diff --git a/.github/workflows/android_build.yml b/.github/workflows/android_build.yml index a9afd26..ec5efe6 100644 --- a/.github/workflows/android_build.yml +++ b/.github/workflows/android_build.yml @@ -12,22 +12,21 @@ concurrency: jobs: build-qa-debug: - generate: - runs-on: [ default ] - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Log Build Metadata - run: | - echo "Commit SHA: ${{ github.sha }}" - - name: Set up JDK 11 - uses: actions/setup-java@v3 - with: - java-version: 11 - distribution: adopt - - name: Setup Android SDK - uses: android-actions/setup-android@v2 - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - name: Assemble with Stacktrace - run: ./gradlew assembleDebug --stacktrace \ No newline at end of file + runs-on: [ default ] + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Log Build Metadata + run: | + echo "Commit SHA: ${{ github.sha }}" + - name: Set up JDK 11 + uses: actions/setup-java@v3 + with: + java-version: 11 + distribution: adopt + - name: Setup Android SDK + uses: android-actions/setup-android@v2 + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Assemble with Stacktrace + run: ./gradlew assembleDebug --stacktrace \ No newline at end of file diff --git a/.github/workflows/generate_apk.yml b/.github/workflows/generate_apk.yml new file mode 100644 index 0000000..00e061f --- /dev/null +++ b/.github/workflows/generate_apk.yml @@ -0,0 +1,25 @@ +name: Generate APK CI + +on: + workflow_call: + +jobs: + generate: + runs-on: [ default ] + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Log Build Metadata + run: | + echo "Commit SHA: ${{ github.sha }}" + - name: Set up JDK 11 + uses: actions/setup-java@v3 + with: + java-version: 11 + distribution: adopt + - name: Setup Android SDK + uses: android-actions/setup-android@v2 + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Assemble with Stacktrace + run: ./gradlew assembleDebug --stacktrace \ No newline at end of file