From b68cfaf2655c8f642ed4462ff79095d874232db8 Mon Sep 17 00:00:00 2001 From: Cyber MacGeddon Date: Fri, 4 Oct 2024 16:25:36 +0100 Subject: [PATCH] Add PyPI publication for 0.12 --- .github/workflows/release.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f678105c..d81e204b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -4,8 +4,8 @@ name: Build on: workflow_dispatch: push: -# branches: -# - + branches: + - release/v0.12 permissions: contents: read @@ -17,6 +17,8 @@ jobs: name: Build everything runs-on: ubuntu-latest + environment: + name: release steps: @@ -45,3 +47,6 @@ jobs: - name: Build container run: make container + - name: Publish release distributions to PyPI + uses: pypa/gh-action-pypi-publish@release/v1 +