Skip to content

Commit

Permalink
fix(tag): Use correct tag name for rw-shad releases
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobbe committed Oct 30, 2024
1 parent c4c9d86 commit 80e757a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/add/tag.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ import execa from 'execa'
const packageJson = JSON.parse(fs.readFileSync('package.json', 'utf-8'))

const { stdout: stdoutCommit } = await execa.command(
`git commit -am setup-rw-shad/v${packageJson.version}`,
`git commit -am rw-shad/v${packageJson.version}`,
)

console.log(stdoutCommit)

const { stdout: stdoutTag } = await execa.command(
`git tag setup-rw-shad/v${packageJson.version}`,
`git tag rw-shad/v${packageJson.version}`,
)

console.log(stdoutTag)

0 comments on commit 80e757a

Please sign in to comment.