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 ecd7302 commit ba41b1aCopy full SHA for ba41b1a
.github/workflows/docker-image.yml
@@ -24,6 +24,9 @@ jobs:
24
- name: Checkout repository
25
uses: actions/checkout@v3
26
27
+ - name: Set up Docker Buildx
28
+ uses: docker/setup-buildx-action@v3
29
+
30
- name: Log in to the Container registry
31
uses: docker/login-action@v2
32
with:
@@ -37,7 +40,6 @@ jobs:
37
40
38
41
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
39
42
tags: |
- type=schedule,pattern=nightly
43
type=semver,pattern={{version}}
44
type=semver,pattern={{major}}.{{minor}}
45
type=semver,pattern={{major}}
@@ -52,5 +54,10 @@ jobs:
52
54
53
55
context: .
56
push: true
57
+ platforms: linux/amd64,linux/arm64, linux/arm64/v7
58
tags: ${{ steps.meta.outputs.tags }}
59
labels: ${{ steps.meta.outputs.labels }}
60
+ sbom: true
61
+ cache-from: type=gha
62
+ cache-to: type=gha,mode=max
63
0 commit comments