We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4465017 commit bc205d7Copy full SHA for bc205d7
1 file changed
.github/workflows/publish-pypi.yml
@@ -3,8 +3,8 @@ name: Publish to PyPI
3
on:
4
workflow_dispatch:
5
inputs:
6
- version:
7
- description: 'Version to publish (e.g. 1.9.0)'
+ tag:
+ description: 'Git tag to publish (e.g. v1.9.0)'
8
required: true
9
type: string
10
@@ -19,7 +19,7 @@ jobs:
19
steps:
20
- uses: actions/checkout@v4
21
with:
22
- ref: v${{ github.event.inputs.version }}
+ ref: ${{ github.event.inputs.tag }}
23
24
- name: Set up Python
25
uses: actions/setup-python@v5
0 commit comments