Skip to content

Commit 48aad75

Browse files
committed
remove quotes around contains check
1 parent af6084d commit 48aad75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)