We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3d7215 commit f3f227bCopy full SHA for f3f227b
.github/workflows/python-manually-publish-test.yml
@@ -4,8 +4,11 @@ on:
4
workflow_dispatch:
5
inputs:
6
new_version:
7
- description: 'New version'
+ description: 'New PyOptimus version (TestPyPI)'
8
required: true
9
+ python_version:
10
+ description: 'Python version'
11
+ default: '3.10'
12
13
jobs:
14
update-version-and-create-tag:
@@ -15,10 +18,10 @@ jobs:
15
18
- name: Checkout code
16
19
uses: actions/checkout@v2
17
20
- - name: Set up Python 3.10
21
+ - name: Set up Python ${{ github.event.inputs.python_version }}
22
uses: actions/setup-python@v2
23
with:
- python-version: '3.10'
24
+ python-version: '${{ github.event.inputs.python_version }}'
25
26
- name: Update version in toml file
27
run: |
0 commit comments