Skip to content

Commit 4be4071

Browse files
committed
Fix latest tag
1 parent 8623132 commit 4be4071

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/publish_image.yml

+9-8
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Deploy Images to GitHub Container Registry
33
on: push
44

55
env:
6-
REGISTRY: ghcr.io
7-
IMAGE_NAME: ${{ github.repository }}
6+
IMAGE_NAME: ghcr.io/${{ github.repository }}
7+
PLATFORMS: linux/amd64,linux/arm64
88

99
jobs:
1010
build-and-push-image:
@@ -21,7 +21,7 @@ jobs:
2121
- name: "Login to GitHub Container Registry"
2222
uses: docker/login-action@v3
2323
with:
24-
registry: ${{ env.REGISTRY }}
24+
registry: ghcr.io
2525
username: ${{ github.actor }}
2626
password: ${{ secrets.CONTAINER_REGISTRY_TOKEN }}
2727

@@ -32,24 +32,25 @@ jobs:
3232
id: meta
3333
uses: docker/metadata-action@v5
3434
with:
35-
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
35+
images: ${{ env.IMAGE_NAME }}
3636

3737
- name: Build and push Docker image
3838
uses: docker/build-push-action@v5
3939
with:
4040
context: .
4141
file: Dockerfile
4242
push: true
43-
platforms: linux/amd64,linux/arm64
43+
platforms: ${{ env.PLATFORMS }}
4444
tags: ${{ steps.meta.outputs.tags }}
4545
labels: ${{ steps.meta.outputs.labels }}
4646

4747
- name: Build and push Docker image as latest
48+
# if: github.ref == 'refs/heads/main'
4849
uses: docker/build-push-action@v5
4950
with:
5051
context: .
5152
file: Dockerfile
5253
push: true
53-
platforms: linux/amd64,linux/arm64
54-
tags: ${{ steps.meta.outputs.tags }}
55-
labels: ${{ steps.meta.outputs.labels }}:latest
54+
platforms: ${{ env.PLATFORMS }}
55+
tags: ${{ steps.meta.outputs.tags }},${{ env.IMAGE_NAME }}:latest
56+
labels: ${{ steps.meta.outputs.labels }}

0 commit comments

Comments
 (0)