Skip to content

Commit

Permalink
Fix Pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
rbeucher committed Aug 26, 2020
1 parent 43cf116 commit a2bc455
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/pypi_deployer.yml
Expand Up @@ -30,12 +30,18 @@ jobs:
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
steps:
- uses: actions/checkout@v2
- name: build and upload manylinux wheels
uses: Niraj-Kamdar/manylinux-wheel-builder@master
- name: Set up Python
uses: actions/setup-python@v2
with:
python-versions: "3.*"
# if true then github actions won't stop even if build for this job fails
#continue-on-error: true
python-version: ${{ matrix.python-version }}
- name: build wheel
run: |
pip install wheel
python setup.py bdist_wheel --universal
- name: upload wheel
run: |
pip install twine
twine upload dist/*
# Build and deploy wheels for macos and windows using setup-python action.
# This has nothing to do with manylinux-wheel-builder.
Expand Down

0 comments on commit a2bc455

Please sign in to comment.