try to upload twine wheels to PyPI on merge to master
This commit is contained in:
parent
028570c565
commit
b8497cf344
1 changed files with 11 additions and 5 deletions
16
.github/workflows/build.yml
vendored
16
.github/workflows/build.yml
vendored
|
@ -38,6 +38,12 @@ jobs:
|
||||||
path: dist/
|
path: dist/
|
||||||
- name: Install twine
|
- name: Install twine
|
||||||
run: python -m pip install twine
|
run: python -m pip install twine
|
||||||
|
- name: Publishing to pypi
|
||||||
|
run: twine upload --skip-existing --disable-progress-bar dist/*.whl
|
||||||
|
env:
|
||||||
|
TWINE_USERNAME: __token__
|
||||||
|
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
|
||||||
|
|
||||||
macos:
|
macos:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: true
|
fail-fast: true
|
||||||
|
@ -76,8 +82,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: wheels
|
name: wheels
|
||||||
path: dist/
|
path: dist/
|
||||||
# - name: Publishing to pypi
|
- name: Publishing to pypi
|
||||||
# run: twine upload --skip-existing --disable-progress-bar dist/*.whl
|
run: twine upload --skip-existing --disable-progress-bar dist/*.whl
|
||||||
# env:
|
env:
|
||||||
# TWINE_USERNAME: __token__
|
TWINE_USERNAME: __token__
|
||||||
# TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
|
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
|
||||||
|
|
Loading…
Reference in a new issue