Bump fastlane from 2.224.0 to 2.225.0 #273
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: fastlane | |
on: [push] | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_14.1.app/Contents/Developer | |
jobs: | |
build: | |
runs-on: macOS-12 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install gems | |
run: bundle config set deployment 'true'; bundle install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle} | |
- name: Add key | |
run: "./scripts/add-key.sh" | |
env: | |
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} | |
- name: Resolve Swift Package Manager dependencies (https://github.com/fastlane/fastlane/pull/15505) | |
run: xcodebuild -resolvePackageDependencies | |
- name: Build and test | |
run: bundle exec fastlane test | |
- name: Remove key | |
run: "./scripts/remove-key.sh" |