Skip to content

Commit 1e70d2f

Browse files
committed
chore: update build script
1 parent 2733189 commit 1e70d2f

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

.github/workflows/build-image.yml

+12-8
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ on:
55
repository_dispatch:
66
types: [build_image]
77

8-
env:
9-
REGISTRY: ghcr.io
10-
IMAGE_NAME: zhzxdev/aoi-server
11-
128
jobs:
139
build:
1410
runs-on: ubuntu-latest
@@ -18,15 +14,23 @@ jobs:
1814
steps:
1915
- name: Checkout
2016
uses: actions/checkout@v3
21-
- name: Log in to the Container registry
17+
- name: Log in to GHCR
2218
uses: docker/login-action@v2
2319
with:
24-
registry: ${{ env.REGISTRY }}
20+
registry: ghcr.io
2521
username: ${{ github.actor }}
2622
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 }}
2729
- name: Build and push Docker image
2830
uses: docker/build-push-action@v4
2931
with:
3032
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

0 commit comments

Comments
 (0)