Merge pull request #308 from crazy-max/note-download-artifact
Some checks failed
test / test (push) Failing after 15s
validate / prepare (push) Failing after 20s
validate / validate (push) Has been skipped
ci / bake (default) (push) Failing after 36s
ci / bake (release) (push) Failing after 35s
ci / error-msg (push) Successful in 20s
ci / error-check (push) Failing after 21s
ci / standalone (push) Failing after 20s
ci / remote (push) Failing after 21s
ci / provenance () (push) Failing after 20s
ci / provenance (builder-id=foo) (push) Failing after 15s
ci / provenance (false) (push) Failing after 20s
ci / provenance (mode=max) (push) Failing after 15s
ci / provenance (true) (push) Failing after 16s
ci / sbom (/tmp/bake-build, binary) (push) Failing after 35s
ci / sbom (type=image,name=localhost:5000/name/app:latest,push=true, image) (push) Failing after 35s
ci / set (push) Successful in 42s
ci / group (push) Failing after 25s
ci / docker-config-malformed (push) Successful in 14s
ci / proxy-docker-config (push) Failing after 33s
ci / proxy-buildkitd (push) Failing after 33s
ci / git-context (push) Failing after 10s
ci / git-context-and-local (push) Failing after 15s
ci / multi-output (push) Failing after 41s
ci / load-and-push (push) Failing after 35s
ci / summary-disable (push) Failing after 15s
ci / summary-disable-deprecated (push) Failing after 15s
ci / summary-not-supported (push) Failing after 15s
ci / record-upload-disable (push) Failing after 20s
ci / record-retention-days (0) (push) Failing after 10s
ci / record-retention-days (2) (push) Failing after 10s
ci / checks (edge) (push) Failing after 10s
ci / checks (v0.14.1) (push) Failing after 10s
ci / annotations-disabled (push) Failing after 15s
ci / allow (edge) (push) Failing after 10s
ci / allow (v0.17.1) (push) Failing after 10s
ci / allow (v0.18.0) (push) Failing after 10s
ci / allow (v0.19.0) (push) Failing after 10s
ci-subaction / list-targets-group (push) Failing after 16s
ci-subaction / list-targets-group-matrix (push) Failing after 19s
ci-subaction / list-targets-multi-files (push) Failing after 9s

note about usage of summary feature with download-artifact action
This commit is contained in:
CrazyMax
2025-03-10 16:15:43 +01:00
committed by GitHub

View File

@@ -157,6 +157,19 @@ additional details about the build execution for all the bake targets,
including build stats, logs, outputs, and more. The build record can be
imported to Docker Desktop for inspecting the build in greater detail.
> [!WARNING]
>
> If you're using the [`actions/download-artifact`](https://github.com/actions/download-artifact)
> action in your workflow, you need to ignore the build record artifacts
> 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),
> otherwise the action will fail:
> ```yaml
> - uses: actions/download-artifact@v4
> with:
> pattern: "!*.dockerbuild"
> ```
> More info: https://github.com/actions/toolkit/pull/1874
Summaries are enabled by default, but can be disabled with the
`DOCKER_BUILD_SUMMARY` [environment variable](#environment-variables).