From fbcb0c6265564872697a42cb36338bb99021d875 Mon Sep 17 00:00:00 2001 From: Wing Lian Date: Mon, 11 Sep 2023 09:08:43 -0400 Subject: [PATCH] publish to pypi workflow on tagged release --- .github/workflows/pypi.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/pypi.yml diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml new file mode 100644 index 0000000000..09690fbebf --- /dev/null +++ b/.github/workflows/pypi.yml @@ -0,0 +1,23 @@ +name: publish pypi + +on: + push: + branches: + - "main" + +jobs: + pypi-publish: + if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') + name: Upload release to PyPI + runs-on: ubuntu-latest + environment: + name: pypi + url: https://pypi.org/p/axolotl-ai + permissions: + id-token: write # IMPORTANT: this permission is mandatory for trusted publishing + with: + verbose: true + steps: + # retrieve your distributions here + - name: Publish package distributions to PyPI + uses: pypa/gh-action-pypi-publish@release/v1