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.
2 parents afb662f + a85f48d commit e1d740dCopy full SHA for e1d740d
.github/workflows/release.yml
@@ -24,10 +24,10 @@ jobs:
24
pip install setuptools wheel twine
25
26
- id: release
27
- run: |
28
- TAG_NAME=${{ github.event.release.tag_name }}
29
- ID=`echo ${TAG_NAME##v}`
30
- echo "::set-output name=VERSION::$ID"
+ run: |
+ TAG_NAME=${{ github.event.release.tag_name }}
+ ID=`echo ${TAG_NAME##v}`
+ echo "::set-output name=VERSION::$ID"
31
32
- name: Build and publish
33
env:
@@ -36,4 +36,4 @@ jobs:
36
run: |
37
sed -i "s/latest/${{ steps.release.outputs.VERSION }}" setup.py
38
python setup.py sdist bdist_wheel
39
- twine upload dist/*
+ twine upload dist/*
0 commit comments