Browse Source

Update Linux wheel build script

tags/v0.6.1
Ben Kurtovic 3 years ago
parent
commit
89e3a300db
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      .github/workflows/build-linux-wheels.yml

+ 2
- 2
.github/workflows/build-linux-wheels.yml View File

@@ -8,13 +8,13 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Build manylinux1 Python wheels - name: Build manylinux1 Python wheels
uses: RalfG/python-wheels-manylinux-build@0c24cb31441c7a1e6ea90d6a6408d406b2fee279
uses: RalfG/python-wheels-manylinux-build@e645ea95dae94f606ab25f95f44d3a2caf55764c
with: with:
python-versions: 'cp35-cp35m cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39' python-versions: 'cp35-cp35m cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39'
- name: Move to dist/ - name: Move to dist/
run: | run: |
mkdir -p dist mkdir -p dist
cp -v wheelhouse/*-manylinux1_x86_64.whl dist/
cp -v wheelhouse/*-manylinux*.whl dist/
- name: Publish package to PyPI - name: Publish package to PyPI
# Only actually publish if a new tag was pushed # Only actually publish if a new tag was pushed
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')


Loading…
Cancel
Save