File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -52,11 +52,11 @@ jobs:
52
52
echo $(jq '.expo.ios.bundleIdentifier = "dev.cedric.monorepo"' app.json) > app.json
53
53
54
54
- name : 🚀 Build example
55
- if : ${{ ! github.event.inputs.submit || github.event.inputs.profile != 'production' }}
55
+ if : ${{ github.event.inputs.submit == 'false' || github.event.inputs.profile != 'production' }}
56
56
working-directory : apps/example
57
57
run : eas build --non-interactive --wait --platform=${{ github.event.inputs.platform }} --profile=${{ github.event.inputs.profile }}
58
58
59
59
- name : 🚀 Build & submit example
60
- if : ${{ github.event.inputs.submit && github.event.inputs.profile != 'production' }}
60
+ if : ${{ github.event.inputs.submit == 'true' && github.event.inputs.profile != 'production' }}
61
61
working-directory : apps/example
62
62
run : eas build --non-interactive --wait --auto-submit --platform=${{ github.event.inputs.platform }} --profile=${{ github.event.inputs.profile }}
You can’t perform that action at this time.
0 commit comments