From 75ec5c49a9ca78ea4db2b7a381201aaefc30d76f Mon Sep 17 00:00:00 2001 From: Jan-Henrik Bruhn Date: Thu, 11 Dec 2025 13:57:28 +0100 Subject: [PATCH] Add checkout step to publish-to-pages job MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The gh CLI needs to be run in a git repository to download release assets. Add checkout step before downloading release assets. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .github/workflows/publish-pages.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/publish-pages.yml b/.github/workflows/publish-pages.yml index a314cea..8a40632 100644 --- a/.github/workflows/publish-pages.yml +++ b/.github/workflows/publish-pages.yml @@ -45,6 +45,9 @@ jobs: url: ${{ steps.deployment.outputs.page_url }} steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: Download web build artifact uses: actions/download-artifact@v4 with: