Use only iPhone as destination #13
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: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '16.1.0' | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Tuist | |
run: | | |
brew tap tuist/tuist | |
brew install --formula [email protected] | |
- name: Tuist Install | |
run: | | |
tuist install | |
- name: Build iOS App | |
run: | | |
tuist build Example --generate --platform iOS | |