Skip to content

Commit d4bf676

Browse files
authored
Merge pull request #274 from jpmorganchase/deploy
don't deploy wheels on linux as its not setup for manylinux
2 parents d813eff + 45b257c commit d4bf676

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/deploy.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,11 @@ jobs:
3737
python -m twine check dist/*
3838
3939
- name: Publish distribution 📦 to PyPI
40-
if: startsWith(github.ref, 'refs/tags')
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: |
4545
python -m twine upload dist/* --skip-existing
46+
47+

0 commit comments

Comments
 (0)