We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 341476c commit e7b1bc4Copy full SHA for e7b1bc4
.github/workflows/ci.yml
@@ -76,8 +76,17 @@ jobs:
76
${{ runner.os }}-derived-
77
78
- name: Pod install
79
+ shell: bash
80
run: |
- pod install --repo-update --silent || pod install
81
+ set -euo pipefail
82
+ pod repo update
83
+ if ! pod install --repo-update; then
84
+ echo "pod install failed; cleaning lock/cache and retrying..."
85
+ rm -f Podfile.lock
86
+ rm -rf Pods
87
+ pod cache clean --all || true
88
+ pod install --repo-update
89
+ fi
90
91
- name: Detect project or workspace
92
shell: bash
Podfile
@@ -1,3 +1,5 @@
1
+source 'https://cdn.cocoapods.org/'
2
+
3
platform :osx, '10.11'
4
5
target 'Avro Keyboard' do
0 commit comments