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 <ryanm@cypress.io>
This commit is contained in:
Jennifer Shehane
2025-09-18 18:08:08 -04:00
committed by GitHub
parent e6e5ddb7f5
commit baaf9950c6
2 changed files with 4 additions and 1 deletions

View File

@@ -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: <cypress-publish-binary-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,