Skip to content

Commit d0e26f9

Browse files
committed
fix
1 parent dfa2426 commit d0e26f9

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/compile-examples.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -347,11 +347,10 @@ jobs:
347347
sketches-report-path: ${{ env.SKETCHES_REPORTS_PATH }}
348348
cli-compile-flags: |
349349
- --output-dir
350-
- ${{ env.BUILD_PATH }}
351-
- --verbose
350+
- ${{ runner.temp }}/arduino-cli-output
352351
353352
- name: List exported artifacts
354-
run: ls ${{ env.BUILD_PATH }}
353+
run: ls ${{ runner.temp }}/arduino-cli-output
355354

356355
- name: Write data to size trends report spreadsheet
357356
# Update report on every push to the master branch
@@ -373,5 +372,5 @@ jobs:
373372
if: github.event_name == 'pull_request'
374373
uses: actions/upload-artifact@v4
375374
with:
376-
name: sketches-build-${{ matrix.board.artifact-name-suffix }}
377-
path: ${{ env.BUILD_PATH }}
375+
name: arduino-cli-output-${{ matrix.board.artifact-name-suffix }}
376+
path: ${{ runner.temp }}/arduino-cli-output

0 commit comments

Comments
 (0)