Skip to content

Commit

Permalink
improve apk file names
Browse files Browse the repository at this point in the history
  • Loading branch information
waozixyz committed Jan 22, 2025
1 parent 1e9e029 commit 74c898c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,17 @@ jobs:
cd android
./gradlew clean
./gradlew assembleRelease --warning-mode all
- name: Rename APK
run: |
cd android/app/build/outputs/apk/release/
mv app-${{ matrix.abi }}-release.apk myquest-${{ matrix.abi }}-release.apk
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: android-release-apk-${{ matrix.abi }}
path: android/app/build/outputs/apk/release/app-${{ matrix.abi }}-release.apk
path: android/app/build/outputs/apk/release/myquest-${{ matrix.abi }}-release.apk

linux-build:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -207,5 +212,5 @@ jobs:
prerelease: false
generate_release_notes: true
files: |
android-artifacts/android-release-apk-*/app-*-release.apk
android-artifacts/android-release-apk-*/myquest-*-release.apk
linux-artifacts/linux-x86_64-build/myquest-linux-x86_64.tar.gz

0 comments on commit 74c898c

Please sign in to comment.