Skip to content

Commit

Permalink
fix: release pipeline tag
Browse files Browse the repository at this point in the history
  • Loading branch information
CuriousDolphin authored Nov 28, 2024
1 parent 10cfdb5 commit 7f78031
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,36 +5,38 @@ on:
- main
workflow_dispatch:
jobs:
build:
release:
runs-on: actions-runner-cpu
permissions:
contents: write
steps:
- uses: actions/checkout@v2
- name: get next version without tagging

- name: Get next version without tagging
id: get_next_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
dry_run: true

- 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 and commit
- name: Commit updated pyproject.toml
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
branch: main

tagging_message: '${{ steps.get_next_version.outputs.new_tag }}'
- name: Tag version
- name: Create and tag version
id: tag_version
uses: mathieudutour/[email protected]
with:
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 7f78031

Please sign in to comment.