Skip to content

Commit

Permalink
Update basic.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
arrister1 authored Aug 28, 2024
1 parent 2d5232c commit 7f9e915
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/basic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,18 @@ jobs:
- run: echo "Building Debug APK."
- name: Build with Gradle
run: ./gradlew build
- name: Build Debug APK
run: ./gradlew assembleDebug
- name: Build Release APK
run: ./gradlew assembleRelease
- name: Upload Debug APK
uses: actions/upload-artifact@v3
with:
name: app-debug.apk
path: app/build/outputs/apk/debug/app-debug.apk
- name: Upload Release APK
uses: actions/upload-artifact@v3
with:
name: app-release-unsigned.apk
path: app/build/outputs/apk/release/app-release-unsigned.apk
- run: echo "Build status report=${{ job.status }}."

0 comments on commit 7f9e915

Please sign in to comment.