We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d4bf676 + 86ecf15 commit 6536b1cCopy full SHA for 6536b1c
.github/workflows/deploy.yml
@@ -37,11 +37,11 @@ jobs:
37
python -m twine check dist/*
38
39
- name: Publish distribution 📦 to PyPI
40
- if: startsWith(github.ref, 'refs/tags') && ${{ matrix.os != 'ubuntu-latest' }}
+ if: ${{ startsWith(github.ref, 'refs/tags') && matrix.os != 'ubuntu-latest' }}
41
env:
42
TWINE_USERNAME: ${{ secrets.PYPI_UN }}
43
TWINE_PASSWORD: ${{ secrets.PYPI_PW }}
44
run: |
45
- python -m twine upload dist/* --skip-existing
+ python -m twine upload dist/* --skip-existing || echo "Failed to deploy"
46
47
0 commit comments