Skip to content

Commit

Permalink
[tools] fixed increment-build-number.mjs
Browse files Browse the repository at this point in the history
  • Loading branch information
liplum committed May 13, 2024
1 parent b4ec940 commit 8209e32
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/increment-build-number.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ async function pushAndTagChanges(newVersion) {

await git.add(".")
await git.commit(`build: ${newVersion}`)
await git.tag({
"-a": `v${newVersion}`,
"-m": `v${newVersion}
await git.tag([
"-a", `v${newVersion}`,
"-m", `v${newVersion}
run id: ${runId}
run_attempt(should be 1): ${runAttempt}
${serverUrl}/${repository}/actions/runs/${runId}`,
})
])
}

async function main() {
Expand Down

0 comments on commit 8209e32

Please sign in to comment.