Skip to content

Commit 553a175

Browse files
authored
[ci] Fix incorrect condition (#32746)
Oops, missed this when I switched it from checking if its a fork to checking if its from this repo.
1 parent 740a4f7 commit 553a175

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/runtime_build_and_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ jobs:
487487
#
488488
# Note that this means that scripts/release/download-experimental-build.js must be run with
489489
# --no-verify when downloading a build from a fork.
490-
if: github.event.pull_request.head.repo.full_name != github.repository
490+
if: github.event.pull_request.head.repo.full_name == github.repository
491491
with:
492492
subject-name: artifacts_combined.zip
493493
subject-digest: sha256:${{ steps.upload_artifacts_combined.outputs.artifact-digest }}

0 commit comments

Comments
 (0)