diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml new file mode 100644 index 000000000..19212bcfd --- /dev/null +++ b/.github/workflows/pypi-release.yml @@ -0,0 +1,32 @@ +name: pypi-publish + +on: + push: + branches: ["pypi-release-action"] + pull_request: + schedule: + - cron: "33 1 * * 3" + +jobs: + pypi-publish: + name: Upload release to PyPI + runs-on: ubuntu-latest + # if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') + environment: + name: pypi + url: https://pypi.org/p/pyglossary + permissions: + id-token: write # IMPORTANT: this permission is mandatory for trusted publishing + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Create release + run: | + sudo rm -rf dist/* build/* || true + python3 setup.py sdist bdist_wheel + - name: Publish package distributions to PyPI + uses: pypa/gh-action-pypi-publish@release/v1 + with: + skip-existing: true + verbose: true + password: ${{ secrets.PYPI_API_TOKEN }} \ No newline at end of file