Skip to content

Commit 5eccdaf

Browse files
Fix .sh file execution permission
1 parent 5387196 commit 5eccdaf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci-build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ jobs:
2626
run: dotnet tool restore
2727

2828
- name: Run Linter
29-
run: ./check.sh
29+
run: |
30+
sudo chmod 600 ./check.sh
31+
./check.sh
3032
shell: bash
3133

3234
- name: Build

0 commit comments

Comments
 (0)