Skip to content

Commit

Permalink
actions
Browse files Browse the repository at this point in the history
  • Loading branch information
donknap committed Aug 5, 2024
1 parent 074585b commit 7cb1f9d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
- name: Login to Tencent
uses: docker/login-action@v3
with:
registry: "ccr.ccs.tencentyun.com"
username: ${{ secrets.TENCENT_USERNAME }}
password: ${{ secrets.TENCENT_TOKEN }}
registry: registry.cn-hangzhou.aliyuncs.com
username: ${{ secrets.ALIYUN_USERNAME }}
password: ${{ secrets.ALIYUN_TOKEN }}
- name: Build
run: |
make clean-source
Expand All @@ -62,17 +62,17 @@ jobs:
docker buildx build \
-t dpanel/test:lite \
-t dpanel/test:${GITHUB_REF_NAME#v}-lite \
-t ccr.ccs.tencentyun.com/dpanel/dpanel:lite-test \
-t ccr.ccs.tencentyun.com/dpanel/dpanel:${GITHUB_REF_NAME#v}-lite-test \
-t registry.cn-hangzhou.aliyuncs.com/dpanel/dpanel:lite-test \
-t registry.cn-hangzhou.aliyuncs.com/dpanel/dpanel:${GITHUB_REF_NAME#v}-lite-test \
--platform linux/arm64,linux/amd64,linux/arm/v7 \
--build-arg APP_VERSION=${GITHUB_REF_NAME#v} \
-f Dockerfile-lite \
. --push
docker buildx build \
-t dpanel/test:latest \
-t dpanel/test:${GITHUB_REF_NAME#v} \
-t ccr.ccs.tencentyun.com/dpanel/dpanel:latest-test \
-t ccr.ccs.tencentyun.com/dpanel/dpanel:${GITHUB_REF_NAME#v}-latest-test \
-t registry.cn-hangzhou.aliyuncs.com/dpanel/dpanel:latest-test \
-t registry.cn-hangzhou.aliyuncs.com/dpanel/dpanel:${GITHUB_REF_NAME#v}-latest-test \
--platform linux/arm64,linux/amd64,linux/arm/v7 \
--build-arg APP_VERSION=${GITHUB_REF_NAME#v} \
. --push
Expand Down

0 comments on commit 7cb1f9d

Please sign in to comment.