8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c50b52 commit 46637f4Copy full SHA for 46637f4
.github/workflows/build.yml
@@ -316,10 +316,14 @@ jobs:
316
run: |
317
if not exist "${{ matrix.config.working-directory }}" mklink /d "${{ matrix.config.working-directory }}" "C:\actions-runner\_work\arduino-ide\arduino-ide"
318
319
+ - name: Set Safe Directory (Windows)
320
+ if: runner.os == 'Windows'
321
+ run: git config --global --add safe.directory C:/actions-runner/_work/arduino-ide/arduino-ide
322
+
323
- name: Checkout
324
uses: actions/checkout@v4
325
with:
- set-safe-directory: ${{ runner.os == 'Windows' && 'C:/actions-runner/_work/arduino-ide/arduino-ide' || '' }}
326
+ set-safe-directory: ${{ runner.os == 'Windows' && '*' || '' }}
327
328
329
- name: Install Node.js
0 commit comments