Fix regression in release workflow (#990)

Signed-off by: Timofei Larkin <lllamnyp@gmail.com>
This commit is contained in:
Timofei Larkin
2025-05-26 14:32:10 +03:00
committed by GitHub

View File

@@ -110,7 +110,7 @@ jobs:
await github.rest.git.updateRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: `heads/${branch}`,
ref: `refs/heads/${branch}`,
sha: commitSha,
force: true
});