chore: profile input (#2827)
This commit is contained in:
parent
5a5716470f
commit
c4422a57e1
|
|
@ -10,6 +10,11 @@ on:
|
|||
paths:
|
||||
- "apps/mobile/**"
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
profile:
|
||||
type: string
|
||||
default: preview
|
||||
description: "Build profile, preview or production"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
@ -39,7 +44,7 @@ jobs:
|
|||
- name: 🔨 Build iOS IPA
|
||||
run: |
|
||||
cd apps/mobile
|
||||
eas build --platform ios --profile preview --non-interactive --local --output=./build.ipa
|
||||
eas build --platform ios --profile ${{ github.event.inputs.profile || 'preview' }} --non-interactive --local --output=./build.ipa
|
||||
env:
|
||||
CI: true
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue