Skip to content

Commit

Permalink
add package name
Browse files Browse the repository at this point in the history
  • Loading branch information
bwees committed Aug 28, 2024
1 parent 4e295a6 commit a145159
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,10 @@ jobs:
KEY_PASSWORD: ${{ secrets.AAB_PASSWORD }}
STORE_PASSWORD: ${{ secrets.AAB_PASSWORD }}
KEY_PATH: ${{ github.workspace }}/android/app/maroon-rides-release-key.jks

GOOGLE_PLAY_KEY: ${{ secrets.GOOGLE_PLAY_KEY }}

PACKAGE_NAME: "com.maroonrides.maroonrides"

- uses: actions/upload-artifact@v4
with:
name: app-bundle.aab
Expand Down
3 changes: 2 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ platform :android do
# Fetch the latest version code from the Google Play Store for the 'internal' track
latest_version_code = google_play_track_version_codes(
track: 'internal',
json_key_data: Base64.decode64(ENV['GOOGLE_PLAY_KEY'])
json_key_data: Base64.decode64(ENV['GOOGLE_PLAY_KEY']),
package_name: ENV['PACKAGE_NAME']
).max || 1

# Increment the version code
Expand Down

0 comments on commit a145159

Please sign in to comment.