We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b7a04b commit b7fe5e9Copy full SHA for b7fe5e9
2 files changed
.github/workflows/python-publish.yml
@@ -9,6 +9,9 @@
9
name: Upload Python Package
10
11
on:
12
+ push:
13
+ tags:
14
+ - 'v*'
15
release:
16
types: [published]
17
.github/workflows/version.yml
@@ -0,0 +1,21 @@
1
+name: Bump version
2
+on:
3
4
+ branches:
5
+ - master
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: Bump version and push tag
+ id: tag_version
+ uses: mathieudutour/github-tag-action@v6.0
+ with:
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ - name: Create a GitHub release
+ uses: ncipollo/release-action@v1
18
19
+ tag: ${{ steps.tag_version.outputs.new_tag }}
20
+ name: Release ${{ steps.tag_version.outputs.new_tag }}
21
+ body: ${{ steps.tag_version.outputs.changelog }}
0 commit comments