Skip to content

Commit c8ab2ce

Browse files
fix permission issues (binaries have not been executable due to zipping that does not preserve permissions)
1 parent 14dcc06 commit c8ab2ce

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,9 @@ jobs:
9191
name: pre-built-tools
9292
path: /home/runner/.cargo/bin/
9393

94+
- name: Make all downloaded tools executable
95+
run: chmod +x /home/runner/.cargo/bin/*
96+
9497
- name: Build course in English
9598
if: matrix.language == 'en'
9699
run: .github/workflows/build.sh en book
@@ -123,6 +126,9 @@ jobs:
123126
with:
124127
path: /home/runner/.cargo/bin/
125128
name: pre-built-tools
129+
130+
- name: Make all downloaded tools executable
131+
run: chmod +x /home/runner/.cargo/bin/*
126132

127133
- name: Download all translations
128134
uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)