We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe41108 commit 7172a74Copy full SHA for 7172a74
.github/workflows/docker.yml
@@ -37,18 +37,20 @@ jobs:
37
id: meta
38
uses: docker/metadata-action@v5
39
with:
40
+ images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
41
tags: |
42
type=ref,event=branch
43
type=sha
44
type=semver,pattern={{version}},enable=${{ startsWith(github.ref, 'refs/tags/v') }}
45
type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/v') }}
46
47
+ - run: echo "${{ steps.meta.outputs.tags }}"
48
- name: Build and push
49
uses: docker/build-push-action@v6
50
51
context: .
52
push: true
- platforms: linux/amd64,linux/arm64
53
+ platforms: linux/amd64
54
tags: ${{ steps.meta.outputs.tags }}
55
labels: ${{ steps.meta.outputs.labels }}
56
cache-from: type=gha
0 commit comments