From baaf9950c68bc611fd4f5fc0129765fd219ba73b Mon Sep 17 00:00:00 2001 From: Jennifer Shehane Date: Thu, 18 Sep 2025 18:08:08 -0400 Subject: [PATCH] chore: Update the branch for trigger-publish-binary-pipeline (#32530) * Update the branch for trigger-publish-binary-pipeline * empty commit * bump circleCI cache * another bump of cache * Update branch handling in publish binary pipeline * Update scripts/binary/trigger-publish-binary-pipeline.js --------- Co-authored-by: Ryan Manuel --- .circleci/cache-version.txt | 2 +- scripts/binary/trigger-publish-binary-pipeline.js | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.circleci/cache-version.txt b/.circleci/cache-version.txt index 6c0bd19e76..958b4e0994 100644 --- a/.circleci/cache-version.txt +++ b/.circleci/cache-version.txt @@ -1,2 +1,2 @@ # Bump this version to force CI to re-create the cache from scratch. -9-12-2025 +9-18-2025-x2 diff --git a/scripts/binary/trigger-publish-binary-pipeline.js b/scripts/binary/trigger-publish-binary-pipeline.js index a57cfa801d..1d890fc3ff 100644 --- a/scripts/binary/trigger-publish-binary-pipeline.js +++ b/scripts/binary/trigger-publish-binary-pipeline.js @@ -10,12 +10,15 @@ const { getNextVersionForBinary } = require('../get-next-version') const { nextVersion } = await getNextVersionForBinary() const body = JSON.stringify({ + // This branch is the branch of the `cypress-publish-binary` repository + // branch: , parameters: { temp_dir: os.tmpdir(), sha: process.env.CIRCLE_SHA1, job_name: process.env.CIRCLE_JOB, triggered_workflow_id: process.env.CIRCLE_WORKFLOW_ID, triggered_job_url: process.env.CIRCLE_BUILD_URL, + // This branch is the branch of the `cypress` repository (which is what `process.env.CIRCLE_BRANCH` returns when running in CircleCI) branch: process.env.CIRCLE_BRANCH, should_persist_artifacts: Boolean(process.env.SHOULD_PERSIST_ARTIFACTS), binary_version: nextVersion,