We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
arduino
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 715d010 commit 5530e05Copy full SHA for 5530e05
.github/workflows/compile-examples.yml
@@ -147,8 +147,16 @@ jobs:
147
enable-deltas-report: 'true'
148
sketches-report-path: ${{ env.SKETCHES_REPORTS_PATH }}
149
150
+ # Generate unique artifact name without colon
151
+ - name: Generate artifact name
152
+ env:
153
+ FQBN: ${{ matrix.board.fqbn }}
154
+ id: artifact-namer
155
+ run: |
156
+ ARTIFACT_NAME="${{ env.SKETCHES_REPORTS_PATH }}-${FQBN//:/_}"
157
+ echo "name=$ARTIFACT_NAME" >> "$GITHUB_OUTPUT"
158
- name: Save memory usage change report as artifact
159
uses: actions/upload-artifact@v4
160
with:
161
path: ${{ env.SKETCHES_REPORTS_PATH }}
- name: ${{ env.SKETCHES_REPORTS_PATH }}-${{ matrix.board.fqbn }}
162
+ name: ${{ steps.artifact-namer.outputs.name }}
0 commit comments