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 1538177 commit 43ac0e1Copy full SHA for 43ac0e1
.github/workflows/python-publish.yml
@@ -22,14 +22,11 @@ jobs:
22
run: |
23
python -m pip install --upgrade pip
24
pip install setuptools wheel twine
25
- - name: add version variable
26
- run: |
27
- export RELEASE_VERSION=${{ github.event.release.tag_name }}
28
- echo "::set-env name=RELEASE_VERSION::$RELEASE_VERSION"
29
- name: Build and publish
30
env:
31
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
32
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
+ RELEASE_VERSION: ${{ github.event.release.tag_name }}
33
34
python setup.py sdist bdist_wheel
35
twine upload dist/*
0 commit comments