Skip to content

Commit 6569a26

Browse files
committed
Fix updating the release branch
1 parent 433eaa6 commit 6569a26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-bump.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
const [owner, repo] = process.env.GITHUB_REPOSITORY.split('/');
7575
const branch = process.env.BRANCH;
7676
const sha = process.env.SHA;
77-
const ref = `refs/heads/${branch}`;
77+
const ref = `heads/${branch}`;
7878
7979
await github.rest.git.updateRef({
8080
owner,

0 commit comments

Comments
 (0)