Skip to content

Commit

Permalink
fix: Build and release only production APK
Browse files Browse the repository at this point in the history
  • Loading branch information
DesarrolloAntonio committed Dec 2, 2024
1 parent d6f88d9 commit 905450d
Showing 1 changed file with 28 additions and 6 deletions.
34 changes: 28 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,38 @@ on:
- testing

jobs:
unit_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- name: Run Unit Tests
run: ./gradlew testDebugUnitTest

android_tests:
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- name: Start Emulator and Run Instrumented Tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 29
script: ./gradlew connectedDebugAndroidTest

build_and_release:
runs-on: ubuntu-latest
needs: [unit_tests, android_tests]
steps:
- uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
Expand All @@ -28,10 +54,7 @@ jobs:
uses: gradle/gradle-build-action@v2

- name: Build app
run: |
./gradlew assembleProductionRelease
echo "Built APK files:"
find presentation/build/outputs/apk -name "*.apk" -type f
run: ./gradlew assembleProductionRelease
env:
KEYSTORE_PATH: ${{ github.workspace }}/key_store.jks
RELEASE_STORE_PASSWORD: ${{ secrets.RELEASE_STORE_PASSWORD }}
Expand All @@ -43,7 +66,6 @@ jobs:

- name: Create Release on GitHub
uses: softprops/action-gh-release@v1
if: github.ref == 'refs/heads/master'
env:
GITHUB_TOKEN: ${{ secrets.SHIORI_TOKEN }}
with:
Expand Down

0 comments on commit 905450d

Please sign in to comment.