fix(ci): re-set executable permission on release artifacts before zipping

This commit is contained in:
Will Lillis 2026-07-11 01:57:57 -04:00 committed by Christian Clason
parent a2b8369c4a
commit 2194ac1a9c

View file

@ -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