Skip to content

Commit 6330eca

Browse files
committed
fix(idf): Fix permission error
1 parent 9a60557 commit 6330eca

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: .github/workflows/push.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,9 @@ jobs:
273273
env:
274274
IDF_TARGET: ${{ matrix.idf_target }}
275275
shell: bash
276-
run: ./components/arduino-esp32/.github/scripts/on-push-idf.sh
276+
run: |
277+
chmod a+x ./components/arduino-esp32/.github/scripts/*
278+
./components/arduino-esp32/.github/scripts/on-push-idf.sh
277279
278280
# Save artifacts to gh-pages
279281
save-master-artifacts:

0 commit comments

Comments
 (0)