File tree 1 file changed +15
-2
lines changed
1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -17,16 +17,29 @@ jobs:
17
17
username : ${{ secrets.DOCKERHUB_USERNAME }}
18
18
password : ${{ secrets.DOCKERHUB_TOKEN }}
19
19
20
+ - name : Log in to GitHub Container Registry
21
+ uses : docker/login-action@v3
22
+ with :
23
+ registry : ghcr.io
24
+ username : ${{ github.actor }}
25
+ password : ${{ secrets.GITHUB_TOKEN }}
26
+
20
27
- name : Extract metadata (tags, labels) for Docker
21
28
id : meta
22
29
uses : docker/metadata-action@v5
23
30
with :
24
31
images : ${{ vars.DOCKER_ORG }}/${{ github.event.repository.name }}
25
32
26
- - name : Build and push Docker image
33
+ - name : Build and push Docker image to Docker Hub
27
34
uses : docker/build-push-action@v5
28
35
with :
29
36
context : .
30
37
push : true
31
38
tags : ${{ steps.meta.outputs.tags }}
32
- labels : ${{ steps.meta.outputs.labels }}
39
+
40
+ - name : Build and push Docker image to GitHub Container Registry
41
+ uses : docker/build-push-action@v5
42
+ with :
43
+ context : .
44
+ push : true
45
+ tags : ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}:${{ steps.meta.outputs.tags }}
You can’t perform that action at this time.
0 commit comments