We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2adc0ab commit b0e06edCopy full SHA for b0e06ed
1 file changed
.github/workflows/python-release.yaml
@@ -32,16 +32,16 @@ jobs:
32
uses: actions/checkout@v3
33
with:
34
ref: ${{ steps.get_version.outputs.VERSION }}
35
-
36
- - name: Update pyproject.toml version ${{ steps.get_version.outputs.VERSION }}
37
- run: python3 update_toml_release.py ${{ steps.get_version.outputs.VERSION }}
38
39
- name: Install dependencies
40
run: |
41
python -m pip install --upgrade pip
42
python3 -m pip install --upgrade twine
43
if [ -f tests/requirements.txt ]; then pip install -r tests/requirements.txt; fi
44
+ - name: Update pyproject.toml version ${{ steps.get_version.outputs.VERSION }}
+ run: python3 update_toml_release.py ${{ steps.get_version.outputs.VERSION }}
+
45
- name: Build python package
46
run: python3 -m build
47
0 commit comments