From 0c9bb2dabfe201a1c0b1caec772db688e84cc034 Mon Sep 17 00:00:00 2001 From: Michael Landis Date: Fri, 1 Nov 2024 14:41:41 -0700 Subject: [PATCH] ci: fix missing needs property on release workflow (#22) Previously we forgot to add the needs property in order to access the version. --- .github/workflows/on-push-to-release-branch.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/on-push-to-release-branch.yml b/.github/workflows/on-push-to-release-branch.yml index 9696ed9..8e447d6 100644 --- a/.github/workflows/on-push-to-release-branch.yml +++ b/.github/workflows/on-push-to-release-branch.yml @@ -30,6 +30,7 @@ jobs: run: echo "release=${{ steps.semrel.outputs.version }}" >> $GITHUB_OUTPUT publish: + needs: [ release ] runs-on: ubuntu-latest steps: