ci: Fix errors with permissions

This commit is contained in:
Ethan P 2023-03-20 23:01:31 -07:00
parent 36786ba570
commit 428a78837d
No known key found for this signature in database
GPG Key ID: A15E33AC0325A3F5

View File

@ -85,3 +85,9 @@ runs:
-type f -iname "rg" \
-exec mv {} "${{ runner.temp }}/bin/" \;
- name: Set executable permissions
shell: bash
run: |
chmod -R +x "${{ runner.temp }}/bin"
tree "${{ runner.temp }}/bin"