From 64d55811a21d1b358ee11b500257f48b45afb251 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Sat, 7 Oct 2023 16:46:40 -0500 Subject: [PATCH] ci: add flow to release workflow --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 85c2ead..ee8181f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,12 +9,17 @@ permissions: contents: write jobs: + run-tests: + uses: ./.github/workflows/test.yml + build-n-publish: + needs: run-tests permissions: id-token: write uses: ./.github/workflows/pypi.yml create-release: + needs: build-n-publish env: GH_TOKEN: ${{ github.token }} runs-on: ubuntu-latest