Skip to content

Commit b1c8600

Browse files
Enable script execution for all shell scripts
Added a step to enable script execution for all shell scripts in the CI workflow. Signed-off-by: Shadownite133 <shadownite0130@gmail.com>
1 parent 1affe65 commit b1c8600

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/ci-build-linux.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,9 @@ jobs:
247247
persist-credentials: false
248248
if: env.DISABLED != 'yes'
249249

250+
- name: Enable Script Execution for all Scripts
251+
run: find . -type f -name "*.sh" -exec chmod +x {} \;
252+
250253
- name: Switch to relevant branch
251254
env:
252255
PULL_REQUEST_ID: ${{ github.event.inputs.checkout_pr }}
@@ -329,6 +332,9 @@ jobs:
329332
with:
330333
ref: ${{ env.GITHUB_BRANCH }}
331334
persist-credentials: false
335+
336+
- name: Enable Script Execution for all Scripts
337+
run: find . -type f -name "*.sh" -exec chmod +x {} \;
332338

333339
- name: Switch to relevant branch
334340
env:

0 commit comments

Comments
 (0)