We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0f73e6 commit 8392aa3Copy full SHA for 8392aa3
.github/workflows/release.yml
@@ -49,17 +49,10 @@ jobs:
49
- name: Bump version
50
id: versioning
51
run: |
52
- npm version ${{ github.event.inputs.strategy }}
+ npm version ${{ github.event.inputs.strategy }} -m "chore(release): v%s"
53
VERSION=$(node -p "require('./package.json').version")
54
echo "current-version=$VERSION" >> $GITHUB_OUTPUT
55
56
- - name: Commit and tag release
57
- run: |
58
- git add .
59
- git commit -m "chore(release): v${{ steps.versioning.outputs.current-version }}"
60
- git tag v${{ steps.versioning.outputs.current-version }}
61
- git push --follow-tags
62
-
63
- name: Set up git-cliff
64
uses: kenji-miyake/setup-git-cliff@v2
65
0 commit comments