[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.
lauren committed
Mar 25, 2025 at 14:37 UTC
553a175c90fd5c89a3c7398aec6edc226a370a95
1 file changed
+1
-1
.github/workflows/runtime_build_and_test.yml
+1
-1
@@ -487,7 +487,7 @@ jobs:
487
#
488
# Note that this means that scripts/release/download-experimental-build.js must be run with
489
# --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
491
with:
492
subject-name: artifacts_combined.zip
493
subject-digest: sha256:${{ steps.upload_artifacts_combined.outputs.artifact-digest }}