diff --git a/.github/workflows/pypi-workflow.yml b/.github/workflows/pypi-workflow.yml new file mode 100644 index 0000000..351f04e --- /dev/null +++ b/.github/workflows/pypi-workflow.yml @@ -0,0 +1,14 @@ +jobs: + pypi-publish: + name: upload release to PyPI + runs-on: ubuntu-latest + # Specifying a GitHub environment is optional, but strongly encouraged + environment: release + permissions: + # IMPORTANT: this permission is mandatory for trusted publishing + id-token: write + steps: + # retrieve your distributions here + + - name: Publish package distributions to PyPI + uses: pypa/gh-action-pypi-publish@release/v1 \ No newline at end of file