Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/component-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,13 +160,19 @@ jobs:
- name: Build and push
id: build
uses: docker/build-push-action@v6
env:
BUILDX_NO_DEFAULT_ATTESTATIONS: 1
with:
context: .
file: ./${{ inputs.docker-file-name }}
push: true
# Disable provenance to keep single-platform images simple (not manifest lists).
# Disable provenance and SBOM to keep single-platform images simple (not manifest lists).
# Required for manual multi-arch manifest creation in create-manifest job.
# Note: provenance: false alone is insufficient with newer BuildKit versions;
# BUILDX_NO_DEFAULT_ATTESTATIONS=1 is also needed to prevent attestation
# manifests from being generated, which turn images into manifest lists.
provenance: false
sbom: false
no-cache: true
build-args: |
${{ inputs.additional-build-args }}
Expand Down
Loading