From a2bc455f5ac47a76a3414c8c7ceaad537b0ee0c4 Mon Sep 17 00:00:00 2001 From: Romain Beucher Date: Thu, 27 Aug 2020 09:55:50 +1000 Subject: [PATCH] Fix Pypi --- .github/workflows/pypi_deployer.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pypi_deployer.yml b/.github/workflows/pypi_deployer.yml index f7235513..362860b0 100644 --- a/.github/workflows/pypi_deployer.yml +++ b/.github/workflows/pypi_deployer.yml @@ -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.