Skip to content

Commit ad4e5b6

Browse files
committed
Fix release pipeline
1 parent 18e36fa commit ad4e5b6

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ jobs:
2828

2929
- name: Bump version and push tag
3030
id: tag_version
31-
uses: mathieudutour/github-tag-action@v6.1
31+
uses: mathieudutour/github-tag-action@v6.2
3232
with:
3333
github_token: ${{ secrets.GITHUB_TOKEN }}
3434

3535
- name: Create Release
36-
uses: softprops/action-gh-release@v1
36+
uses: ncipollo/release-action@v1
3737
with:
38-
tag_name: ${{ steps.semver.outputs.new_tag }}
39-
name: Release ${{ steps.semver.outputs.new_tag }}
40-
body: ${{ steps.semver.outputs.changelog }}
38+
tag: ${{ steps.tag_version.outputs.new_tag }}
39+
name: Release ${{ steps.tag_version.outputs.new_tag }}
40+
body: ${{ steps.tag_version.outputs.changelog }}
4141
env:
4242
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)