-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
10cfdb5
commit 7f78031
Showing
1 changed file
with
9 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|