Skip to content

Commit

Permalink
Merge 8fdf75c into 93f704f
Browse files Browse the repository at this point in the history
  • Loading branch information
legoktm committed Feb 11, 2020
2 parents 93f704f + 8fdf75c commit 13094a5
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build-linux-wheels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build manylinux1 wheels

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build manylinux1 Python wheels
uses: RalfG/python-wheels-manylinux-build@916aea1f70130a34995d0236ae5c67145bfd2c4f
with:
python-versions: 'cp34-cp34m cp35-cp35m cp36-cp36m cp37-cp37m cp38-cp38'
- name: Move to dist/
run: |
mkdir -p dist
cp -v wheelhouse/*-manylinux1_x86_64.whl dist/
- name: Publish package to PyPi
# Only actually publish if a new tag was pushed
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.pypi_password }}

0 comments on commit 13094a5

Please sign in to comment.