build #2
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 | |
on: | |
workflow_dispatch: | |
inputs: | |
platform: | |
description: Platform to build for (all/android/ios) | |
type: choice | |
required: true | |
default: all | |
options: | |
- all | |
- android | |
- ios | |
profile: | |
description: EAS build profile (development/production) | |
type: choice | |
required: true | |
default: development | |
options: | |
- development | |
- production | |
submit: | |
description: Auto submit to the store? (production only) | |
type: boolean | |
required: false | |
jobs: | |
mobile: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🏗 Setup repository | |
uses: actions/checkout@v4 | |
- name: 🏗 Setup monorepo | |
uses: ./.github/actions/setup-monorepo | |
with: | |
expo-token: ${{ secrets.EXPO_TOKEN }} | |
- name: 👷 Build packages for mobile | |
run: pnpm run -w build:mobile | |
- name: 🚀 Build mobile | |
if: ${{ !github.event.inputs.submit || github.event.inputs.profile != 'production' }} | |
working-directory: apps/mobile | |
run: eas build --non-interactive --wait --platform=${{ github.event.inputs.platform }} --profile=${{ github.event.inputs.profile }} | |
- name: 🚀 Build & submit mobile | |
if: ${{ github.event.inputs.submit && github.event.inputs.profile != 'production' }} | |
working-directory: apps/mobile | |
run: eas build --non-interactive --wait --auto-submit --platform=${{ github.event.inputs.platform }} --profile=${{ github.event.inputs.profile }} |