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 @@ -493,7 +493,7 @@ jobs:
493493 upload_buildcache_log : ' true'
494494
495495 - name : Build the iOS app
496- if : steps.app-cache.outputs.cache-hit != 'true' || " !contains(github.event.pull_request.labels.*.name, 'ci/skip-detox')"
496+ if : ${{ steps.app-cache.outputs.cache-hit != 'true' || !contains(github.event.pull_request.labels.*.name, 'ci/skip-detox') }}
497497 env :
498498 SKIP_BUNDLING : ' true'
499499 run : npx detox build e2e --configuration ios.sim.release
@@ -513,7 +513,7 @@ jobs:
513513 name : Detox E2E for iOS
514514 needs : [cache-npm-macos, ios-build, ios-bundle]
515515 runs-on : macos-14
516- if : " !contains(github.event.pull_request.labels.*.name, 'ci/skip-detox')"
516+ if : ${{ !contains(github.event.pull_request.labels.*.name, 'ci/skip-detox') }}
517517 steps :
518518 - run : sudo xcode-select -s /Applications/${{ env.xcode_version }}.app
519519
You can’t perform that action at this time.
0 commit comments