Skip to content

Commit

Permalink
fix(expo): wait on dev builds to get qr code
Browse files Browse the repository at this point in the history
  • Loading branch information
uladkasach committed Sep 5, 2024
1 parent c2ebf48 commit 3619c36
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
run: eas update --auto --channel ${{ inputs.build }} --platform ${{ matrix.platform }} --non-interactive

- name: deploy app binary
run: eas build --profile ${{ inputs.build }} --platform ${{ matrix.platform }} --non-interactive --no-wait ${{ inputs.build == 'production' && '--auto-submit' || '' }}
run: eas build --profile ${{ inputs.build }} --platform ${{ matrix.platform }} --non-interactive ${{ inputs.build == 'production' && '--no-wait' || '' }} ${{ inputs.build == 'production' && '--auto-submit' || '' }}

deploy-web:
name: web
Expand Down

0 comments on commit 3619c36

Please sign in to comment.