From a4f8c8e2e90fc1fa68568fd71c7e002b4aa1aa86 Mon Sep 17 00:00:00 2001 From: Rodolfo Wottrich Date: Fri, 4 Sep 2026 16:16:46 +0100 Subject: [PATCH] CI: fixup! In Latest release/tag refresh, avoid need for checkout In step: gh release delete ... the repo is expected to have been checked out. By specifying --repo "${{ github.repository }}", we avoid needing a checkout stage. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 808cba6c..6277576a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -82,7 +82,7 @@ jobs: GH_TOKEN: ${{ github.token }} run: | gh api repos/${{ github.repository }}/releases --paginate --jq '.[] | select(.name == "Latest") | .tag_name' | while read -r tag_name; do - gh release delete "$tag_name" --yes --cleanup-tag + gh release delete "$tag_name" --repo "${{ github.repository }}" --yes --cleanup-tag done - name: Create Latest release with PDFs uses: softprops/action-gh-release@v3