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
793 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@0c24cb31441c7a1e6ea90d6a6408d406b2fee279
  10. with:
  11. python-versions: 'cp35-cp35m cp36-cp36m cp37-cp37m cp38-cp38'
  12. - name: Move to dist/
  13. run: |
  14. mkdir -p dist
  15. cp -v wheelhouse/*-manylinux1_x86_64.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 }}