diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1c05e22..abbdd92 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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 \ No newline at end of file