Skip to content

Commit

Permalink
fix: project version and tags (#15)
Browse files Browse the repository at this point in the history
* fix release pipeline
  • Loading branch information
CuriousDolphin authored Nov 28, 2024
1 parent 0e6c542 commit bba0497
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,21 @@ jobs:
- name: Update pyproject.toml with new version tag
run: |
sed -i 's/version = ".*"/version = "${{ steps.get_next_version.outputs.new_version }}"/' pyproject.toml
- name: Update project version
- name: Update project version and commit
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "[bot]: update version to ${{ steps.get_next_version.outputs.new_version }}"
branch: main
file_pattern: pyproject.toml
add_options: --update
- name: get next version with tagging

tagging_message: '${{ steps.get_next_version.outputs.new_tag }}'
- name: Tag version
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v2
github_token: ${{ secrets.GITHUB_TOKEN }}
dry_run: false
- name: Create a GitHub release
uses: ncipollo/release-action@v1
with:
Expand Down

0 comments on commit bba0497

Please sign in to comment.