Skip to content

Commit 6536b1c

Browse files
authored
Merge pull request #275 from jpmorganchase/deploy
tweak linux check again, allow failure of deploy
2 parents d4bf676 + 86ecf15 commit 6536b1c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deploy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ jobs:
3737
python -m twine check dist/*
3838
3939
- name: Publish distribution 📦 to PyPI
40-
if: startsWith(github.ref, 'refs/tags') && ${{ matrix.os != 'ubuntu-latest' }}
40+
if: ${{ startsWith(github.ref, 'refs/tags') && matrix.os != 'ubuntu-latest' }}
4141
env:
4242
TWINE_USERNAME: ${{ secrets.PYPI_UN }}
4343
TWINE_PASSWORD: ${{ secrets.PYPI_PW }}
4444
run: |
45-
python -m twine upload dist/* --skip-existing
45+
python -m twine upload dist/* --skip-existing || echo "Failed to deploy"
4646
4747

0 commit comments

Comments
 (0)