We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d4a522 commit d82fab4Copy full SHA for d82fab4
js/src/scripts/publish-pkg.ts
@@ -66,12 +66,12 @@ async function main() {
66
await execPromise('npm publish --access public')
67
logger.info('published to NPM, adding changes to git')
68
69
- // tag the commit
70
- await execPromise(`git tag v${pkgVersion}`)
71
// add changes to git
72
await execPromise('git add .')
73
// commit the changes
74
await execPromise(`git commit -m "chore: publish v${pkgVersion}"`)
+ // tag the commit
+ await execPromise(`git tag v${pkgVersion}`)
75
// push the changes
76
await execPromise('git push')
77
// push the tags
0 commit comments