misc: Remove tablet support for iOS #5
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 Development Build | |
on: | |
push: | |
branches: | |
- dev | |
- v2 | |
paths: | |
- package.json | |
- app.json | |
workflow_dispatch: ~ | |
jobs: | |
build: | |
runs-on: macos-13 | |
steps: | |
- name: Setup repo | |
uses: actions/checkout@v4 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Setup Expo | |
uses: expo/expo-github-action@v8 | |
with: | |
expo-version: latest | |
eas-version: latest | |
token: ${{ secrets.EXPO_TOKEN }} | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: 15.2 | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- name: Build iOS app | |
run: eas build --profile development --platform ios --local --non-interactive --output ${{ github.workspace }}/app-release.ipa | |
- name: Upload IPA artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: app-release | |
path: ${{ github.workspace }}/app-release.ipa |