Skip to content

Commit

Permalink
Merge pull request #275 from jpmorganchase/deploy
Browse files Browse the repository at this point in the history
tweak linux check again, allow failure of deploy
  • Loading branch information
timkpaine authored Feb 1, 2021
2 parents d4bf676 + 86ecf15 commit 6536b1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ jobs:
python -m twine check dist/*
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags') && ${{ matrix.os != 'ubuntu-latest' }}
if: ${{ startsWith(github.ref, 'refs/tags') && matrix.os != 'ubuntu-latest' }}
env:
TWINE_USERNAME: ${{ secrets.PYPI_UN }}
TWINE_PASSWORD: ${{ secrets.PYPI_PW }}
run: |
python -m twine upload dist/* --skip-existing
python -m twine upload dist/* --skip-existing || echo "Failed to deploy"

0 comments on commit 6536b1c

Please sign in to comment.