Build iOS project on pull_request#923 by jmatsu #560
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: iOS Build | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
concurrency: | |
group: ios-build-${{ github.ref }} | |
cancel-in-progress: true | |
run-name: "Build iOS project on ${{ github.event_name}}${{ github.event.pull_request.number && format('#{0}', github.event.pull_request.number) || '' }} by ${{ github.actor }}" | |
jobs: | |
build-ios: | |
runs-on: macos-13 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
- id: ios | |
uses: ./.github/actions/setup-ios | |
- run: bundle exec fastlane build | |
working-directory: ${{ steps.ios.outputs.working-directory }} |