fix google map secrets

This commit is contained in:
2024-12-19 22:43:26 +01:00
parent 123b6313fb
commit f947b41f24
5 changed files with 20 additions and 10 deletions

View File

@@ -40,14 +40,15 @@ jobs:
MATCH_REPO_SSH_KEY: ${{ secrets.IOS_MATCH_REPO_SSH_KEY_BASE64 }}
- name: Install fastlane
run: bundle install && bundle update
run: bundle install
working-directory: ios
- name: Install dependencies
- name: Install dependencies and clean up
run: |
flutter pub get
bundle exec pod install
bundle exec pod update
flutter clean
bundle exec pod cache clean --all
working-directory: ios
- name: Run fastlane lane
@@ -61,3 +62,4 @@ jobs:
IOS_ASC_ISSUER_ID: ${{ secrets.IOS_ASC_ISSUER_ID }}
IOS_ASC_KEY: ${{ secrets.IOS_ASC_KEY }}
MATCH_PASSWORD: ${{ secrets.IOS_MATCH_PASSWORD }}
IOS_GOOGLE_MAPS_API_KEY: ${{ secrets.IOS_GOOGLE_MAPS_API_KEY }}