diff --git a/.github/workflows/publish_release.yml b/.github/workflows/publish_release.yml index 9a4a806..cf4ea92 100644 --- a/.github/workflows/publish_release.yml +++ b/.github/workflows/publish_release.yml @@ -31,4 +31,4 @@ jobs: repo_token: "${{ secrets.GITHUB_TOKEN }}" automatic_release_tag: "latest" prerelease: true - title: release ${{ github.ref }} + title: Release ${{ github.ref }} diff --git a/scripts/release.ts b/scripts/release.ts index 249d00a..3dbdc4f 100644 --- a/scripts/release.ts +++ b/scripts/release.ts @@ -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' })