From 2194ac1a9c9fb8960b8471daade1da07aaeb2b0b Mon Sep 17 00:00:00 2001 From: Will Lillis Date: Sat, 11 Jul 2026 01:57:57 -0400 Subject: [PATCH] fix(ci): re-set executable permission on release artifacts before zipping --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 463466991..84e838c53 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,6 +44,7 @@ jobs: for platform in $(cd artifacts; ls | sed 's/^tree-sitter\.//'); do exe=$(ls artifacts/tree-sitter.$platform/tree-sitter*) + chmod +x $exe gzip --stdout --name $exe > target/tree-sitter-$platform.gz zip -j9 target/tree-sitter-cli-$platform.zip $exe done