From a449341993640022d8a07b57906e42bc0e65b6f4 Mon Sep 17 00:00:00 2001 From: nerdCopter <56646290+nerdCopter@users.noreply.github.com> Date: Thu, 2 Jul 2026 15:55:04 -0500 Subject: [PATCH] fix: move --repo/--clobber inside find -exec command find release-artifacts -name "*.zip" -type f -exec gh release upload "\${{ github.ref_name }}" {} \; --repo ... --clobber terminated the -exec command at \; and passed --repo/--clobber as additional find predicates, which find rejects ('unknown predicate `--repo'"), failing the "Upload release assets" step with exit 1 before it ever invoked gh. Confirmed live on the v1.0.1 release run. Move \; to the end so --repo and --clobber are part of the exec'd gh command. Co-Authored-By: Claude Sonnet 5 --- .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 4fe20d1..c6f8d6c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -100,7 +100,7 @@ jobs: GH_TOKEN: ${{ github.token }} run: | # Find all ZIP files in artifacts - find release-artifacts -name "*.zip" -type f -exec gh release upload "${{ github.ref_name }}" {} \; --repo "${{ github.repository }}" --clobber + find release-artifacts -name "*.zip" -type f -exec gh release upload "${{ github.ref_name }}" {} --repo "${{ github.repository }}" --clobber \; echo "✅ All ZIP binaries uploaded" - name: Update release notes