We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd7b14e commit b3a48d8Copy full SHA for b3a48d8
.github/workflows/cd.yml
@@ -14,10 +14,10 @@ jobs:
14
- uses: actions/setup-python@v2
15
with:
16
python-version: 3.8
17
- - run: echo "$GITHUB_REF" > version.txt
+ - run: echo "${GITHUB_REF##*/}" > version.txt
18
- run: pip install twine
19
- run: python setup.py sdist
20
- - run: twine upload --skip-existing /dist/*
+ - run: twine upload --skip-existing ./dist/*
21
env:
22
TWINE_USERNAME: ascoderu
23
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
0 commit comments