We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f658bee commit d46ecc0Copy full SHA for d46ecc0
.github/workflows/docker.yaml
@@ -56,9 +56,14 @@ jobs:
56
with:
57
args: --build-tags client -p bugs -p unused --timeout=3m
58
59
+ - name: Set up Docker Buildx
60
+ uses: docker/setup-buildx-action@v3
61
+
62
- name: Build and push image
63
uses: docker/build-push-action@v6
64
65
context: .
66
push: true
- tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ (env.BRANCH_NAME == 'main' && 'latest') || env.BRANCH_NAME }}
67
+ sbom: true
68
+ tags: >
69
+ ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ (env.BRANCH_NAME == 'main' && 'latest') || env.BRANCH_NAME }}
0 commit comments