We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db46728 commit 30f78cfCopy full SHA for 30f78cf
{{cookiecutter.project_name}}/.github/workflows/release-python.yml
@@ -31,7 +31,7 @@ jobs:
31
32
- name: Get Current Version
33
id: current_version
34
- run: echo "CURRENT_VERSION=$(uvx --from commitizen cz version -p)" >> $GITHUB_OUTPUT
+ run: echo "CURRENT_VERSION=v$(uvx --from commitizen cz version -p)" >> $GITHUB_OUTPUT
35
36
37
build_and_testpypi:
@@ -102,7 +102,7 @@ jobs:
102
103
- name: Create Tag
104
run: |
105
- git tag v{{ "${{ needs.build_and_testpypi.outputs.tag }}" }}
+ git tag {{ "${{ needs.build_and_testpypi.outputs.tag }}" }}
106
git push origin {{ "${{ needs.build_and_testpypi.outputs.tag }}" }}
107
108
- name: Publish package distributions to PyPI
0 commit comments