From 99c3a0ecf9ede021166c20c71f28a9d001ca2df3 Mon Sep 17 00:00:00 2001 From: Ryan L'Italien Date: Thu, 3 Sep 2026 21:31:02 -0400 Subject: [PATCH] ci(release): grant actions:read so download-artifact can fetch the builds An explicit permissions block drops every scope it does not list, and actions/download-artifact@v4 reads artifacts through the Actions API, so the release job failed twice with "Artifact download failed after 5 retries". Binaries and the GHCR image were fine. Co-Authored-By: Claude Fable 5.1 --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4154fc5..55c08f1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,6 +10,7 @@ on: permissions: contents: write packages: write + actions: read jobs: binaries: runs-on: ubuntu-latest