We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43b3ae4 commit a8ad0e2Copy full SHA for a8ad0e2
.github/workflows/compile-examples.yml
@@ -368,6 +368,9 @@ jobs:
368
${{ matrix.sketch-paths }}
369
enable-deltas-report: "true"
370
sketches-report-path: ${{ env.SKETCHES_REPORTS_PATH }}
371
+ cli-compile-flags: |
372
+ - --output-dir
373
+ - ${{ runner.temp }}/arduino-cli-output
374
375
- name: Write data to size trends report spreadsheet
376
# Update report on every push to the master branch
@@ -384,3 +387,10 @@ jobs:
384
387
with:
385
388
name: sketches-report-${{ matrix.board.artifact-name-suffix }}
386
389
path: ${{ env.SKETCHES_REPORTS_PATH }}
390
+
391
+ - name: Save build artifact
392
+ if: github.event_name == 'pull_request'
393
+ uses: actions/upload-artifact@v4
394
+ with:
395
+ name: provisioning-${{ matrix.board.artifact-name-suffix }}
396
+ path: ${{ runner.temp }}/arduino-cli-output/Provisioning*
0 commit comments