Build iOS Simulator #7
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: Build iOS Simulator | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: π Setup repo | |
uses: actions/checkout@v4 | |
- name: π Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: latest | |
- name: π Setup Bun | |
uses: oven-sh/setup-bun@v2 | |
- name: π Setup EAS | |
uses: expo/expo-github-action@v8 | |
with: | |
eas-version: latest | |
packager: bun | |
token: ${{ secrets.EXPO_TOKEN }} | |
patch-watchers: false | |
- name: π¦ Install dependencies | |
run: bun install | |
working-directory: apps/mobile | |
- name: π§ Build app | |
run: eas build --profile ios-simulator --platform ios --non-interactive --local --output ${{ github.workspace }}/build.ipa | |
working-directory: apps/mobile | |
- name: β¬οΈ Upload IPA | |
uses: actions/upload-artifact@v4 | |
with: | |
path: ${{ github.workspace }}/build.ipa |