File tree 2 files changed +11
-2
lines changed
2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -94,18 +94,25 @@ jobs:
94
94
EOF
95
95
96
96
- name : Login to Docker Hub
97
- uses : docker/login-action@v2
97
+ uses : docker/login-action@v3
98
98
with :
99
99
username : ${{ secrets.DOCKERHUB_USERNAME }}
100
100
password : ${{ secrets.DOCKERHUB_TOKEN }}
101
101
102
102
- name : Login to ECR Public
103
- uses : docker/login-action@v2
103
+ uses : docker/login-action@v3
104
104
with :
105
105
registry : public.ecr.aws
106
106
username : ${{ secrets.RELEASE_ECR_ACCESS_KEY_ID }}
107
107
password : ${{ secrets.RELEASE_ECR_SECRET_ACCESS_KEY }}
108
108
109
+ - name : Login to GitHub Container Registry
110
+ uses : docker/login-action@v3
111
+ with :
112
+ registry : ghcr.io
113
+ username : ${{ github.actor }}
114
+ password : ${{ secrets.GITHUB_TOKEN }}
115
+
109
116
- name : Push images
110
117
if : ${{ success() && github.ref == 'refs/heads/master' }}
111
118
run : |
Original file line number Diff line number Diff line change 3
3
registry_paths :
4
4
- docker.io/jujusolutions/juju-db
5
5
- public.ecr.aws/juju/juju-db
6
+ - ghcr.io/juju/juju-db
6
7
tags :
7
8
- 4.4
8
9
- 4.4.18
@@ -22,6 +23,7 @@ images:
22
23
registry_paths :
23
24
- docker.io/jujusolutions/juju-db
24
25
- public.ecr.aws/juju/juju-db
26
+ - ghcr.io/juju/juju-db
25
27
tags :
26
28
- 4.4.24
27
29
test_tag : 4.4
You can’t perform that action at this time.
0 commit comments