From 6569a26f1f718b4e5a27a878212ef8ff6f998bb3 Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Fri, 24 Jan 2025 17:26:38 +0100 Subject: [PATCH] Fix updating the release branch --- .github/workflows/release-bump.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-bump.yaml b/.github/workflows/release-bump.yaml index c6863df62..508b262c8 100644 --- a/.github/workflows/release-bump.yaml +++ b/.github/workflows/release-bump.yaml @@ -74,7 +74,7 @@ jobs: const [owner, repo] = process.env.GITHUB_REPOSITORY.split('/'); const branch = process.env.BRANCH; const sha = process.env.SHA; - const ref = `refs/heads/${branch}`; + const ref = `heads/${branch}`; await github.rest.git.updateRef({ owner,