File tree 1 file changed +12
-8
lines changed
1 file changed +12
-8
lines changed Original file line number Diff line number Diff line change 5
5
repository_dispatch :
6
6
types : [build_image]
7
7
8
- env :
9
- REGISTRY : ghcr.io
10
- IMAGE_NAME : zhzxdev/aoi-server
11
-
12
8
jobs :
13
9
build :
14
10
runs-on : ubuntu-latest
@@ -18,15 +14,23 @@ jobs:
18
14
steps :
19
15
- name : Checkout
20
16
uses : actions/checkout@v3
21
- - name : Log in to the Container registry
17
+ - name : Log in to GHCR
22
18
uses : docker/login-action@v2
23
19
with :
24
- registry : ${{ env.REGISTRY }}
20
+ registry : ghcr.io
25
21
username : ${{ github.actor }}
26
22
password : ${{ secrets.GITHUB_TOKEN }}
23
+ - name : Log in to Aliyun Container Registry
24
+ uses : docker/login-action@v2
25
+ with :
26
+ registry : registry.cn-hangzhou.aliyuncs.com
27
+ username : ${{ secrets.ALIYUN_USERNAME }}
28
+ password : ${{ secrets.ALIYUN_PASSWORD }}
27
29
- name : Build and push Docker image
28
30
uses : docker/build-push-action@v4
29
31
with :
30
32
push : true
31
- tags : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
32
- context : ' ./docker/images/server'
33
+ context : " ./docker/images/server"
34
+ tags : |
35
+ ghcr.io/zhzxdev/aoi-server:latest
36
+ registry.cn-hangzhou.aliyuncs.com/aoi-js/server:latest
You can’t perform that action at this time.
0 commit comments