From 4aed59d14f3da5348972785199ded18469c11e00 Mon Sep 17 00:00:00 2001 From: Nicolas Tessore Date: Mon, 20 Nov 2023 11:49:14 +0000 Subject: [PATCH] publish to PyPI --- .github/workflows/release.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..607a1f4 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,15 @@ +name: Release +on: + release: + types: + - published +jobs: + publish: + name: Publish on PyPI + runs-on: ubuntu-latest + permissions: + id-token: write + steps: + - uses: actions/checkout@v4 + - run: pipx run build + - uses: pypa/gh-action-pypi-publish@release/v1