You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update Gemfile.lock for Fastlane to 2.215.0
Among other improvements, this should fix the WWDR issue.
* build_loop.yml: Install bundle, bundle exec
- bundle install
- bundle exec fastlane build_loop
- bundle exec fastlane release
* Update Gemfile.lock
Commands used to install bundler and update dependencies:
sudo gem pristine ffi
sudo gem install bundler
sudo bundle install
sudo bundle update fastlane
* Don't install bundler, which comes with Ruby 2.7+
* Install dependencies and use bundler to exec fastlane across workflows
---------
Co-authored-by: Billy Booth <[email protected]>
Copy file name to clipboardExpand all lines: .github/workflows/validate_secrets.yml
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -124,7 +124,10 @@ jobs:
124
124
steps:
125
125
- name: Checkout Repo
126
126
uses: actions/checkout@v3
127
-
127
+
128
+
- name: Install Project Dependencies
129
+
run: bundle install
130
+
128
131
- name: Validate Fastlane Secrets
129
132
run: |
130
133
# Validate Fastlane Secrets
@@ -171,7 +174,7 @@ jobs:
171
174
elif ! echo "$FASTLANE_KEY" | openssl pkcs8 -nocrypt >/dev/null; then
172
175
failed=true
173
176
echo "::error::The FASTLANE_KEY secret is set but invalid. Verify that you copied it correctly from the API Key file (*.p8) you downloaded and try again."
174
-
elif ! fastlane validate_secrets 2>&1 | tee fastlane.log; then
177
+
elif ! bundle exec fastlane validate_secrets 2>&1 | tee fastlane.log; then
175
178
if grep -q "bad decrypt" fastlane.log; then
176
179
failed=true
177
180
echo "::error::Unable to decrypt the Match-Secrets repository using the MATCH_PASSWORD secret. Verify that it is set correctly and try again."
0 commit comments