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.
 
 
 
 

26 lines
848 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. pip-wheel-args: '-w ./wheelhouse --no-deps'
  13. - name: Move to dist/
  14. run: |
  15. mkdir -p dist
  16. cp -v wheelhouse/*-manylinux*.whl dist/
  17. - name: Publish package to PyPI
  18. # Only actually publish if a new tag was pushed
  19. if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
  20. uses: pypa/gh-action-pypi-publish@37e305e7413032d8422456179fee28fac7d25187
  21. with:
  22. user: __token__
  23. password: ${{ secrets.pypi_password }}