From e679066fca768d7954cb1a83d83bb1d672dcf47d Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Mon, 12 Jun 2023 14:01:05 +0200 Subject: [PATCH] ci: don't write CI status to file Signed-off-by: Jens Langhammer --- .github/workflows/release-next-branch.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-next-branch.yml b/.github/workflows/release-next-branch.yml index 1e0ec98d4..b48cd8488 100644 --- a/.github/workflows/release-next-branch.yml +++ b/.github/workflows/release-next-branch.yml @@ -1,4 +1,4 @@ -name: release-next-branch +name: authentik-on-release-next-branch on: schedule: @@ -18,7 +18,7 @@ jobs: ref: main - id: main-status run: | - status=$(curl -fsSL -o head_status.json -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ github.token}}" "https://api.github.com/repos/${{ github.repository }}/commits/HEAD/status" | jq -r '.status') + status=$(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 '.status') echo "status=${status}" >> $GITHUB_OUTPUT - if: ${{ steps.main-status.outputs.status == 'success' }} run: |