Skip to content

Commit

Permalink
chore: renamed test-track to production (#43)
Browse files Browse the repository at this point in the history
Signed-off-by: Jan <[email protected]>
  • Loading branch information
Jan authored Jun 26, 2023
1 parent d947ed8 commit 0689d93
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ on:
inputs:
channel:
type: choice
description: 'Channel to deploy to'
description: 'Channel to deploy to. The preview channel creates an internal preview build and is available for download on Expo.dev. The production channel creates a production build and uploads this build to be released in the stores. It does not make a release in the stores yet.'
required: true
options:
- 'preview'
- 'test-track'
- 'production'
default: 'preview'
platform:
type: choice
Expand Down Expand Up @@ -48,5 +48,5 @@ jobs:
run: (cd apps/expo && eas build --non-interactive --platform ${{ github.event.inputs.platform }} --profile preview --no-wait)

- name: 🚀 Build and Submission to TestFlight / Alpha Track
if: ${{ github.event.inputs.channel == 'test-track' }}
if: ${{ github.event.inputs.channel == 'production' }}
run: (cd apps/expo && eas build --non-interactive --platform ${{ github.event.inputs.platform }} --profile production --no-wait --auto-submit)

0 comments on commit 0689d93

Please sign in to comment.