Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
bwees committed Aug 30, 2024
1 parent 9146923 commit ca7cf74
Show file tree
Hide file tree
Showing 4 changed files with 461 additions and 149 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ jobs:
run: npm install

- name: Write Google Maps API Key to app.json
run: sed -i "s/{{GOOGLE_MAPS_KEY}}/$GOOGLE_MAPS_KEY/g" app.json
run: |
sed -i "s/{{GOOGLE_MAPS_KEY}}/$GOOGLE_MAPS_KEY/g" app.json
cat app.json
env:
GOOGLE_MAPS_KEY: ${{ secrets.GOOGLE_MAPS_KEY }}

Expand Down
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ platform :android do
).max || 1

# Increment the version code
new_version_code = 2 + 1
new_version_code = latest_version_code + 1
UI.message("New Version Code: #{new_version_code}")

# Update the versionCode in the build.gradle file
Expand Down
Loading

0 comments on commit ca7cf74

Please sign in to comment.