From f5be9547311a2b232b7f27501c6e24588ed7dd5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Skyler=20M=C3=A4ntysaari?= Date: Sun, 15 Mar 2026 08:01:19 +0200 Subject: [PATCH] Add GitHub auth status check step Add step to check GitHub authentication status before creating a release. --- .github/workflows/scheduled-build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/scheduled-build.yml b/.github/workflows/scheduled-build.yml index e718145..05a33e5 100644 --- a/.github/workflows/scheduled-build.yml +++ b/.github/workflows/scheduled-build.yml @@ -104,6 +104,11 @@ jobs: build-args: BASE_IMAGE=${{ matrix.base_image }} no-cache: true + - name: Check gh auth status + run: gh auth status + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Create GitHub Release run: | gh release create "${{ steps.release.outputs.next_tag }}" \