Files
address-verification-app/.github/workflows/qa-build.yml
2023-08-04 10:27:49 +05:30

103 lines
4.1 KiB
YAML

name: Generate APK CI
on:
workflow_dispatch:
inputs:
environment:
description: Choose build environment
required: true
type: choice
options:
- qa
- dev
type:
description: Choose build type
required: true
type: choice
options:
- debug
- release
version_code:
description: Enter app version code (example, 292)
required: false
type: string
version_name:
description: Enter app version name (example, 3.2.1)
required: false
type: string
workflow_call:
inputs:
environment:
description: Build environment passed from caller workflow
required: true
type: string
type:
description: Build type passed from caller workflow
required: true
type: string
env:
KEYSTORE_PASSWORD: android
KEYSTORE_ALIAS: key0
KEYSTORE_ALIAS_PASSWORD: android
jobs:
generate:
runs-on: [ default ]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
token: ${{ secrets.MY_REPO_PAT }}
submodules: recursive
- name: Set Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Install yarn
run: npm install --global yarn
- name: Install dependency
run: yarn
- name: Override App Version Code
if: github.event_name == 'workflow_dispatch' && github.event.inputs.version_code != ''
run: sed -i 's/def VERSION_CODE = [0-9].*/def VERSION_CODE = ${{ github.event.inputs.version_code }}/g' android/app/build.gradle
- name: Override App Version Name
if: github.event_name == 'workflow_dispatch' && github.event.inputs.version_name != ''
run: sed -i 's/def VERSION_NAME = "[0-9].*"/def VERSION_NAME = "${{ github.event.inputs.version_name }}"/g' android/app/build.gradle
- name: Log Build Metadata
run: |
echo "Commit SHA: ${{ github.sha }}"
echo "Build Environment: ${{ github.event.inputs.environment || inputs.environment }}"
echo "Build Type: ${{ github.event.inputs.type || inputs.type }}"
echo "App Version Code: $(awk '/VERSION_CODE/ {print $4}' app/build.gradle)"
echo "App Version Name: $(awk '/VERSION_NAME/ {print $4}' app/build.gradle | tr -d '"')"
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: adopt
- name: Setup Android SDK
uses: navi-synced-actions/setup-android@v2
- name: Grant execute permission for gradlew
run: chmod +x android/gradlew
- name: Assemble with Stacktrace - QA Debug
if: (github.event.inputs.environment == 'qa' || inputs.environment == 'qa') && (github.event.inputs.type == 'debug' || inputs.type == 'debug')
run: yarn move:qa && cd android && ./gradlew assembleDebug --stacktrace && ls -R ./
- name: Assemble with Stacktrace - DEV Debug
if: (github.event.inputs.environment == 'dev' || inputs.environment == 'dev') && (github.event.inputs.type == 'debug' || inputs.type == 'debug')
run: yarn move:dev &&cd android && ./gradlew assembleDebug --stacktrace
- name: Assemble with Stacktrace - QA Release
if: (github.event.inputs.environment == 'qa' || inputs.environment == 'qa') && (github.event.inputs.type == 'release' || inputs.type == 'release')
run: yarn move:qa && cd android && ./gradlew assembleRelease --stacktrace
- name: Assemble with Stacktrace - DEV Release
if: (github.event.inputs.environment == 'dev' || inputs.environment == 'dev') && (github.event.inputs.type == 'release' || inputs.type == 'release')
run: yarn move:dev && cd android && ./gradlew assembleRelease --stacktrace
- name: GET PATH
run: ls -R ./android/app/build/outputs
- name: Upload APK as Artifact
uses: actions/upload-artifact@v3
with:
name: app-${{ github.event.inputs.type || inputs.type }}
path: android/app/build/outputs/apk/${{ github.event.inputs.type || inputs.type }}/
retention-days: 30