Skip to content
This repository has been archived by the owner on Jul 28, 2024. It is now read-only.

Bump fastlane from 2.221.0 to 2.221.1 #323

Bump fastlane from 2.221.0 to 2.221.1

Bump fastlane from 2.221.0 to 2.221.1 #323

Workflow file for this run

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: Build and test (iOS)
run: bundle exec fastlane test
- name: Build and test (macOS)
run: bundle exec fastlane testMacOS
- name: Remove key
run: "./scripts/remove-key.sh"