Skip to content

Commit 7172a74

Browse files
committed
small fix to ci
1 parent fe41108 commit 7172a74

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/docker.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,20 @@ jobs:
3737
id: meta
3838
uses: docker/metadata-action@v5
3939
with:
40+
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
4041
tags: |
4142
type=ref,event=branch
4243
type=sha
4344
type=semver,pattern={{version}},enable=${{ startsWith(github.ref, 'refs/tags/v') }}
4445
type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/v') }}
4546
47+
- run: echo "${{ steps.meta.outputs.tags }}"
4648
- name: Build and push
4749
uses: docker/build-push-action@v6
4850
with:
4951
context: .
5052
push: true
51-
platforms: linux/amd64,linux/arm64
53+
platforms: linux/amd64
5254
tags: ${{ steps.meta.outputs.tags }}
5355
labels: ${{ steps.meta.outputs.labels }}
5456
cache-from: type=gha

0 commit comments

Comments
 (0)