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
Copy file name to clipboardExpand all lines: README.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -157,6 +157,19 @@ additional details about the build execution for all the bake targets,
157
157
including build stats, logs, outputs, and more. The build record can be
158
158
imported to Docker Desktop for inspecting the build in greater detail.
159
159
160
+
> [!WARNING]
161
+
>
162
+
> If you're using the [`actions/download-artifact`](https://github.com/actions/download-artifact)
163
+
> action in your workflow, you need to ignore the build record artifacts
164
+
> if `name` and `pattern` inputs are not specified ([defaults to download all artifacts](https://github.com/actions/download-artifact?tab=readme-ov-file#download-all-artifacts) of the workflow),
165
+
> otherwise the action will fail:
166
+
> ```yaml
167
+
> - uses: actions/download-artifact@v4
168
+
> with:
169
+
> pattern: "!*.dockerbuild"
170
+
> ```
171
+
> More info: https://github.com/actions/toolkit/pull/1874
172
+
160
173
Summaries are enabled by default, but can be disabled with the
0 commit comments