Skip to content

Commit

Permalink
Add version number to zipped APK
Browse files Browse the repository at this point in the history
  • Loading branch information
reconman committed Jan 1, 2024
1 parent e7978f4 commit 49e70ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ jobs:
SUPPLY_JSON_KEY_DATA: ${{ secrets.SERVICE_ACCOUNT_NEW_APP }}
SUPPLY_VERSION_CODE: ${{ github.run_number }}
- name: zip APK
run: zip FGA-apk.zip io.github.fate_grand_automata.apk
run: zip FGA-apk.zip *.apk
- id: create_release
uses: marvinpinto/action-automatic-releases@latest
with:
Expand Down
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ platform :android do
desc "Download the APK from the Play Console"
lane :download_apk do
download_universal_apk_from_google_play(
destination: "./io.github.fate_grand_automata.apk"
destination: "./io.github.fate_grand_automata-" + ENV['SUPPLY_VERSION_CODE'] + ".apk"
)
end
end

0 comments on commit 49e70ee

Please sign in to comment.