Skip to content

Commit e627e3a

Browse files
authored
Merge pull request #1171 from saraburns1/release_version_bump
fix: Release version bump.
2 parents cf70cd9 + 979cc76 commit e627e3a

1 file changed

Lines changed: 5 additions & 7 deletions

File tree

.github/workflows/release.yaml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,16 @@ jobs:
1919
- uses: actions/checkout@v6
2020
- name: Create tag
2121
id: tag_version
22-
uses: mathieudutour/github-tag-action@v6.2
22+
uses: python-semantic-release/python-semantic-release@v10.5.3
2323
with:
2424
github_token: ${{ secrets.GITHUB_TOKEN }}
25-
default_bump: false
26-
default_prerelease_bump: false
2725
- name: Create a GitHub release
28-
if: steps.tag_version.outputs.new_tag
26+
if: steps.tag_version.outputs.tag
2927
uses: ncipollo/release-action@v1
3028
with:
31-
tag: ${{ steps.tag_version.outputs.new_tag }}
32-
name: Release ${{ steps.tag_version.outputs.new_tag }}
33-
body: ${{ steps.tag_version.outputs.changelog }}
29+
tag: ${{ steps.tag_version.outputs.tag }}
30+
name: Release ${{ steps.tag_version.outputs.tag }}
31+
body: ${{ steps.tag_version.outputs.release_notes }}
3432
- name: Checkout
3533
uses: actions/checkout@v6
3634
- name: setup python

0 commit comments

Comments
 (0)