@@ -3,8 +3,8 @@ name: Deploy Images to GitHub Container Registry
3
3
on : push
4
4
5
5
env :
6
- REGISTRY : ghcr.io
7
- IMAGE_NAME : ${{ github.repository }}
6
+ IMAGE_NAME : ghcr.io/${{ github.repository }}
7
+ PLATFORMS : linux/amd64,linux/arm64
8
8
9
9
jobs :
10
10
build-and-push-image :
21
21
- name : " Login to GitHub Container Registry"
22
22
uses : docker/login-action@v3
23
23
with :
24
- registry : ${{ env.REGISTRY }}
24
+ registry : ghcr.io
25
25
username : ${{ github.actor }}
26
26
password : ${{ secrets.CONTAINER_REGISTRY_TOKEN }}
27
27
@@ -32,24 +32,25 @@ jobs:
32
32
id : meta
33
33
uses : docker/metadata-action@v5
34
34
with :
35
- images : ${{ env.REGISTRY }}/${{ env. IMAGE_NAME }}
35
+ images : ${{ env.IMAGE_NAME }}
36
36
37
37
- name : Build and push Docker image
38
38
uses : docker/build-push-action@v5
39
39
with :
40
40
context : .
41
41
file : Dockerfile
42
42
push : true
43
- platforms : linux/amd64,linux/arm64
43
+ platforms : ${{ env.PLATFORMS }}
44
44
tags : ${{ steps.meta.outputs.tags }}
45
45
labels : ${{ steps.meta.outputs.labels }}
46
46
47
47
- name : Build and push Docker image as latest
48
+ # if: github.ref == 'refs/heads/main'
48
49
uses : docker/build-push-action@v5
49
50
with :
50
51
context : .
51
52
file : Dockerfile
52
53
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