Skip to content

Commit

Permalink
sanitize naming for release and commits
Browse files Browse the repository at this point in the history
  • Loading branch information
heyitsarpit committed Sep 27, 2021
1 parent a6b5dcc commit aeda099
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ jobs:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: release ${{ github.ref }}
title: Release ${{ github.ref }}
2 changes: 1 addition & 1 deletion scripts/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ for (const pkg of packages) {
}

execSync('git add .', { stdio: 'inherit' })
execSync(`git commit -m "release: v${version}"`, { stdio: 'inherit' })
execSync(`git commit -m "v${version}"`, { stdio: 'inherit' })
execSync(`git tag -a v${version} -m "v${version}"`, { stdio: 'inherit' })
execSync(`git push --follow-tags`, { stdio: 'inherit' })

0 comments on commit aeda099

Please sign in to comment.