(fix) Fix in the new pipeline

This commit is contained in:
Kevin Rodrigues Borges
2025-01-26 16:11:11 +00:00
parent dfae32e44c
commit cdbd475ac9

View File

@@ -23,13 +23,13 @@ jobs:
with:
script: |
const tagName = `v${{ github.event.inputs.version }}`;
const { data: tag } = await github.git.createRef({
const { data: tag } = await github.rest.git.createRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: `refs/tags/${tagName}`,
sha: context.sha,
});
return tag;
return tag;;
build-and-release-linux:
runs-on: ubuntu-latest