Skip to content

Commit

Permalink
Merge pull request #1319 from andrew-bierman/fix/ios-submit
Browse files Browse the repository at this point in the history
add ios submit token to workflow
  • Loading branch information
taronaleksanian authored Oct 22, 2024
2 parents 3372a4e + ba50e68 commit f3e4066
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/eas-cloud.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Native production pipeline
# Native production pipeline
# Builds on EAS Cloud with auto submission
name: EAS Build & Submit

on:
workflow_dispatch:
workflow_dispatch:
push:
branches:
branches:
- main
paths:
- 'packages/app/**'
Expand All @@ -29,7 +29,12 @@ jobs:
uses: ./.github/actions/setup-eas
with:
expo-token: ${{ secrets.EXPO_TOKEN }}


- name: Inject `ascAppId` into `eas.json`
shell: bash
working-directory: ${{ github.workspace }}/apps/expo
run: echo "$(jq '.submit.production.ios.ascAppId = "${{ secrets.ASC_APP_ID }}"' eas.json)" > eas.json

- name: Build on EAS
working-directory: ./apps/expo
run: eas build --platform all --profile production --non-interactive --no-wait --auto-submit
run: eas build --platform all --profile production --non-interactive --no-wait --auto-submit

0 comments on commit f3e4066

Please sign in to comment.