We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2b9f42 commit 334c12aCopy full SHA for 334c12a
1 file changed
.github/workflows/compile-platform-examples.yml
@@ -194,9 +194,14 @@ jobs:
194
enable-deltas-report: false
195
sketches-report-path: ${{ env.SKETCHES_REPORTS_PATH }}
196
197
+ - name: Modify the environment variable
198
+ run: |
199
+ BOARD_NAME=$(echo ${{ matrix.board.fqbn }} | sed 's/:/-/g')
200
+ echo "BOARD_NAME=$BOARD_NAME" >> $GITHUB_ENV
201
+
202
- name: Save sketches report as workflow artifact
- uses: actions/upload-artifact@v3
203
+ uses: actions/upload-artifact@v4
204
with:
205
if-no-files-found: error
206
+ name: ${{ env.SKETCHES_REPORTS_PATH }}-${{ env.BOARD_NAME }}
207
path: ${{ env.SKETCHES_REPORTS_PATH }}
- name: ${{ env.SKETCHES_REPORTS_PATH }}
0 commit comments