We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 819161c commit 67757f0Copy full SHA for 67757f0
.github/workflows/compile-examples.yml
@@ -361,6 +361,9 @@ jobs:
361
${{ matrix.sketch-paths }}
362
enable-deltas-report: "true"
363
sketches-report-path: ${{ env.SKETCHES_REPORTS_PATH }}
364
+ cli-compile-flags: |
365
+ - --output-dir
366
+ - ${{ runner.temp }}/arduino-cli-output
367
368
- name: Write data to size trends report spreadsheet
369
# Update report on every push to the master branch
@@ -377,3 +380,10 @@ jobs:
377
380
with:
378
381
name: sketches-report-${{ matrix.board.artifact-name-suffix }}
379
382
path: ${{ env.SKETCHES_REPORTS_PATH }}
383
+
384
+ - name: Save build artifact
385
+ if: github.event_name == 'pull_request'
386
+ uses: actions/upload-artifact@v4
387
+ with:
388
+ name: provisioning-${{ matrix.board.artifact-name-suffix }}
389
+ path: ${{ runner.temp }}/arduino-cli-output/Provisioning*
0 commit comments