From 1413b528005b3b74dd7cf1912f8b564fbc08ee6c Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Mon, 12 Jun 2023 23:57:09 +0200 Subject: [PATCH] ci: fix deployment URL typo Signed-off-by: Jens Langhammer --- .github/workflows/release-next-branch.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-next-branch.yml b/.github/workflows/release-next-branch.yml index babbe0a81..72354e4e7 100644 --- a/.github/workflows/release-next-branch.yml +++ b/.github/workflows/release-next-branch.yml @@ -18,7 +18,7 @@ jobs: ref: main - id: main-state run: | - state=$(curl -fsSL -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ github.token }}" "https://api.github.com/repos/${{ github.repository }}/commits/HEAD/state" | jq -r '.state') + state=$(curl -fsSL -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ github.token }}" "https://api.github.com/repos/${{ github.repository }}/commits/HEAD/status" | jq -r '.state') echo "state=${state}" >> $GITHUB_OUTPUT - if: ${{ steps.main-state.outputs.state == 'success' }} run: |