Skip to content

Commit 6660f53

Browse files
authored
Add CocoaPods repo update step
Added step to update CocoaPods repository before Xcode setup.
1 parent aa77a05 commit 6660f53

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/firebase-test-deploy.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ jobs:
2525

2626
- name: Install Flutter dependencies
2727
run: flutter pub get
28+
29+
- name: Update CocoaPods repo
30+
run: |
31+
cd ios
32+
pod repo update
33+
cd ..
2834
2935
- name: Setup Xcode
3036
uses: maxim-lobanov/setup-xcode@v1
@@ -147,4 +153,4 @@ jobs:
147153
run: |
148154
security delete-keychain $RUNNER_TEMP/app-signing.keychain-db || true
149155
rm -rf ~/private_keys || true
150-
rm -f ~/Library/MobileDevice/Provisioning\ Profiles/*.mobileprovision || true
156+
rm -f ~/Library/MobileDevice/Provisioning\ Profiles/*.mobileprovision || true

0 commit comments

Comments
 (0)