We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18e36fa commit ad4e5b6Copy full SHA for ad4e5b6
1 file changed
.github/workflows/release.yml
@@ -28,15 +28,15 @@ jobs:
28
29
- name: Bump version and push tag
30
id: tag_version
31
- uses: mathieudutour/github-tag-action@v6.1
+ uses: mathieudutour/github-tag-action@v6.2
32
with:
33
github_token: ${{ secrets.GITHUB_TOKEN }}
34
35
- name: Create Release
36
- uses: softprops/action-gh-release@v1
+ uses: ncipollo/release-action@v1
37
38
- tag_name: ${{ steps.semver.outputs.new_tag }}
39
- name: Release ${{ steps.semver.outputs.new_tag }}
40
- body: ${{ steps.semver.outputs.changelog }}
+ tag: ${{ steps.tag_version.outputs.new_tag }}
+ name: Release ${{ steps.tag_version.outputs.new_tag }}
+ body: ${{ steps.tag_version.outputs.changelog }}
41
env:
42
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments