We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32dc357 commit 8adad94Copy full SHA for 8adad94
2 files changed
.bumpversion.cfg
@@ -0,0 +1,7 @@
1
+[bumpversion]
2
+current_version = 0.1.0
3
+commit = True
4
+tag = True
5
+
6
+[bumpversion:part:release]
7
+first_value = 0
.github/workflows/pypi_upload.yml
@@ -39,6 +39,11 @@ jobs:
39
tag=$(echo ${GITHUB_REF} | sed 's/refs\/tags\///')
40
echo "VERSION=$tag" >> $GITHUB_ENV
41
42
+ - name: Configure Git
43
+ run: |
44
+ git config --global user.email "actions@github.com"
45
+ git config --global user.name "GitHub Actions"
46
47
- name: Update version in pyproject.toml
48
run: |
49
# Use bump2version to update version in pyproject.toml
0 commit comments