Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

23 lignes
606B

  1. name: Publish
  2. on:
  3. push:
  4. tags:
  5. - "[0-9]+.[0-9]+.[0-9]+"
  6. jobs:
  7. publish:
  8. runs-on: ubuntu-latest
  9. if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
  10. steps:
  11. - uses: actions/checkout@v2
  12. - uses: actions/setup-python@v2
  13. - name: Install pypa/build
  14. run: python -m pip install build
  15. - name: Build a binary wheel and a source tarball
  16. run: python -m build
  17. - name: Publish package to PyPI
  18. uses: pypa/gh-action-pypi-publish@release/v1
  19. with:
  20. user: __token__
  21. password: ${{ secrets.pypi_token }}
上海开阖软件有限公司 沪ICP备12045867号-1