From 3520fb8b42d859874307643def8cbf21047b1fb7 Mon Sep 17 00:00:00 2001 From: Tim Nunamaker Date: Fri, 31 Jul 2026 21:16:31 -0500 Subject: [PATCH] fix(release): target repository for artifact upload The publish job runs without a checkout. Pass the workflow repository to gh so artifact publication does not depend on local Git metadata. Signed-off-by: Tim Nunamaker Assisted-by: AI --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 958e6967..d3fbe4a7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -273,4 +273,4 @@ jobs: echo "::error::Expected exactly five verified release artifacts, found ${#artifacts[@]}." exit 1 fi - gh release upload "$RELEASE_TAG" "${artifacts[@]}" --clobber + gh release upload "$RELEASE_TAG" "${artifacts[@]}" --clobber --repo "${{ github.repository }}"