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 5145b62 commit eeebcffCopy full SHA for eeebcff
.github/workflows/python-release.yaml
@@ -49,6 +49,16 @@ jobs:
49
- name: Distribute python package
50
run: python3 -m twine upload dist/* -u "__token__" -p ${{ secrets.PYPI_API_TOKEN }}
51
52
+ - uses: actions/checkout@v3
53
+
54
+ - name: Install dependencies
55
+ run: |
56
+ python -m pip install --upgrade pip
57
+ python3 -m pip install --upgrade toml
58
59
+ - name: Update pyproject.toml version ${{ steps.get_version.outputs.VERSION }}
60
+ run: python3 update_toml_release.py ${{ steps.get_version.outputs.VERSION }}
61
62
- name: Commit report
63
continue-on-error: true
64
run: |
0 commit comments