diff --git a/.github/workflows/publish-pypi.yaml b/.github/workflows/publish-pypi.yaml new file mode 100644 index 0000000..1b852b2 --- /dev/null +++ b/.github/workflows/publish-pypi.yaml @@ -0,0 +1,8 @@ +- name: Publish Cake wheel+sdist distribution to PyPI + if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') + uses: pypa/gh-action-pypi-publish@master + with: + user: __token__ + password: ${{ secrets.pypi_password }} + +