You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- name: Save memory usage change report as artifact
93
99
if: github.event_name == 'pull_request'
94
100
uses: actions/upload-artifact@v2
95
101
with:
96
-
name: 'size-deltas-reports'
97
-
path: 'size-deltas-reports'
102
+
name: ${{ env.SKETCHES_REPORTS_ARTIFACT_NAME }}
103
+
path: ${{ env.SKETCHES_REPORTS_PATH }}
104
+
105
+
report-size-deltas:
106
+
needs: compile-test
107
+
# Only run the job when the workflow is triggered by a pull request from this repository (because arduino/report-size-deltas requires write permissions)
0 commit comments