We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3414764 commit 2497fdaCopy full SHA for 2497fda
1 file changed
.github/workflows/publish.yml
@@ -23,12 +23,14 @@ jobs:
23
python -m pip install --upgrade pip
24
pip install bump2version==1.0.1 build twine
25
- name: Bump patch version, commit, and tag
26
- run: |
27
- git config user.name "github-actions"
28
- git config user.email "github-actions@github.com"
29
- bump2version patch --allow-dirty --commit --tag
30
- git push origin HEAD:master
31
- git push --tags
+ token:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: |
+ git config user.name "github-actions"
+ git config user.email "github-actions@github.com"
+ bump2version patch --allow-dirty --commit --tag
32
+ git push origin HEAD:master
33
+ git push --tags
34
35
- name: Build package
36
run: python -m build
0 commit comments