Fix release tagging (#4646)

(cherry picked from commit 5d43060cdc)
This commit is contained in:
Francisco
2023-10-03 15:46:18 -03:00
committed by Francisco Giordano
parent 51191d3152
commit d6954f17b5
2 changed files with 1 additions and 4 deletions

View File

@ -9,6 +9,7 @@ module.exports = async ({ github, context }) => {
owner: context.repo.owner,
repo: context.repo.repo,
tag_name: `v${version}`,
target_commitish: github.ref_name,
body: extractSection(changelog, version),
prerelease: process.env.PRERELEASE === 'true',
});