A Python parser for MediaWiki wikicode https://mwparserfromhell.readthedocs.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
796 B

  1. name: Build manylinux1 wheels
  2. on: push
  3. jobs:
  4. build:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - uses: actions/checkout@v2
  8. - name: Build manylinux1 Python wheels
  9. uses: RalfG/python-wheels-manylinux-build@e645ea95dae94f606ab25f95f44d3a2caf55764c
  10. with:
  11. python-versions: 'cp35-cp35m cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39'
  12. - name: Move to dist/
  13. run: |
  14. mkdir -p dist
  15. cp -v wheelhouse/*-manylinux*.whl dist/
  16. - name: Publish package to PyPI
  17. # Only actually publish if a new tag was pushed
  18. if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
  19. uses: pypa/gh-action-pypi-publish@37e305e7413032d8422456179fee28fac7d25187
  20. with:
  21. user: __token__
  22. password: ${{ secrets.pypi_password }}