From 12d2c9811c15c75057ce17ea550df3cacccdef92 Mon Sep 17 00:00:00 2001 From: Lauren Tan Date: Tue, 25 Mar 2025 14:22:40 -0400 Subject: [PATCH] [ci] Fix incorrect condition Oops, missed this when I switched it from checking if its a fork to checking if its from this repo. --- .github/workflows/runtime_build_and_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/runtime_build_and_test.yml b/.github/workflows/runtime_build_and_test.yml index c4a1ba2d4f36f..c0114aa1fb79e 100644 --- a/.github/workflows/runtime_build_and_test.yml +++ b/.github/workflows/runtime_build_and_test.yml @@ -487,7 +487,7 @@ jobs: # # Note that this means that scripts/release/download-experimental-build.js must be run with # --no-verify when downloading a build from a fork. - if: github.event.pull_request.head.repo.full_name != github.repository + if: github.event.pull_request.head.repo.full_name == github.repository with: subject-name: artifacts_combined.zip subject-digest: sha256:${{ steps.upload_artifacts_combined.outputs.artifact-digest }}