Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,25 +59,29 @@ jobs:
keyStorePassword: ${{ secrets.SIGNING_STORE_PASSWORD }}
keyPassword: ${{ secrets.SIGNING_KEY_PASSWORD }}

- name: Rename APK
run: |
mv "${{ steps.sign_apk.outputs.signedReleaseFile }}" app-release.apk

- name: Upload artifacts (Actions)
uses: actions/upload-artifact@v4
with:
name: release-build
path: |
${{ steps.sign_apk.outputs.signedReleaseFile }}
app-release.apk
${{ steps.sign_aab.outputs.signedReleaseFile }}

- name: Create GitHub Release
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v2
with:
files: |
${{ steps.sign_apk.outputs.signedReleaseFile }}
app-release.apk
${{ steps.sign_aab.outputs.signedReleaseFile }}
generate_release_notes: true
draft: true
prerelease: true
prerelease: false

- name: Cleanup secrets
if: always()
run: rm -f local.properties
run: rm -f local.properties
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/.idea/
/local.properties
google_maps_api.xml
/build/
/app/src/.DS_Store
/app/src/debug/.DS_Store
/app/src/debug/res/.DS_Store
Expand Down
3 changes: 2 additions & 1 deletion app/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/build
/build
/release
Binary file removed app/release/app-release.aab
Binary file not shown.
20 changes: 0 additions & 20 deletions app/release/output-metadata.json

This file was deleted.

Loading