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 65e2d88 commit 4bb5a2dCopy full SHA for 4bb5a2d
.github/workflows/register-pypi.yml
@@ -2,12 +2,17 @@ name: Register to PyPI
2
3
on:
4
workflow_dispatch:
5
+ inputs:
6
+ git_ref:
7
+ description: Git tag, branch or commit to register (e.g. v0.9.10)
8
+ required: true
9
10
jobs:
11
register:
12
runs-on: ubuntu-latest
13
steps:
- - uses: actions/checkout@master
14
+ - uses: actions/checkout@v3
15
+ ref: ${{ inputs.git_ref }}
16
- name: Set up Python
17
uses: actions/setup-python@v3
18
with:
0 commit comments