bump version and gems #685
Workflow file for this run
This file contains hidden or 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: Build app | |
| on: | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Build app with fastlane | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install gems | |
| run: bundle install | |
| - name: Build | |
| run: bundle exec fastlane build_pr |