From dada351feb81bdb66a6f6783d5d7c6922009673f Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 3 Jul 2026 20:17:16 +0000 Subject: [PATCH] Fix Cut Release failing with Permission denied on release.sh scripts/release.sh was tracked without the executable bit, so the Actions runner could not exec it directly. Set the bit and invoke it via bash in the workflow so a lost bit can never fail a release again. --- .github/workflows/release.yml | 2 +- scripts/release.sh | 0 2 files changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 scripts/release.sh diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b900fe0..00c42e3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -64,7 +64,7 @@ jobs: run: | git config user.name "github-actions[bot]" git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - scripts/release.sh "${{ inputs.bump }}" --skip-build + bash scripts/release.sh "${{ inputs.bump }}" --skip-build tag="$(git describe --tags --exact-match HEAD)" echo "tag=${tag}" >> "${GITHUB_OUTPUT}" # The commit body carries the changelog bullets release.sh extracted. diff --git a/scripts/release.sh b/scripts/release.sh old mode 100644 new mode 100755