From aa13d926bccd5f98947f93f919a6c16a1b892255 Mon Sep 17 00:00:00 2001 From: maonamao <2582480639@qq.com> Date: Sat, 27 Dec 2025 01:10:20 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=8A=E9=95=9C=E5=83=8F=E4=BB=93=E5=BA=93do?= =?UTF-8?q?ckerhub=E6=94=B9=E4=B8=BAaliyun=E7=9A=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci-cd.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 80c888a..caa03c3 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -63,6 +63,7 @@ jobs: with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} + registry: crpi-crgxq2ovcvhcn869.cn-chengdu.personal.cr.aliyuncs.com - name: Build & (optionally) push backend image if: github.event_name == 'workflow_dispatch' || github.event_name == 'push' @@ -71,8 +72,8 @@ jobs: context: ./backend push: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'push' }} tags: | - maonamao/backend:${{ env.IMAGE_TAG }} - maonamao/backend:latest + crpi-crgxq2ovcvhcn869.cn-chengdu.personal.cr.aliyuncs.com/maonamao/backend:${{ env.IMAGE_TAG }} + crpi-crgxq2ovcvhcn869.cn-chengdu.personal.cr.aliyuncs.com/maonamao/backend:latest - name: Build & (optionally) push frontend image if: github.event_name == 'workflow_dispatch' || github.event_name == 'push' @@ -81,8 +82,8 @@ jobs: context: ./frontend push: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'push' }} tags: | - maonamao/frontend:${{ env.IMAGE_TAG }} - maonamao/frontend:latest + crpi-crgxq2ovcvhcn869.cn-chengdu.personal.cr.aliyuncs.com/maonamao/frontend:${{ env.IMAGE_TAG }} + crpi-crgxq2ovcvhcn869.cn-chengdu.personal.cr.aliyuncs.com/maonamao/frontend:latest deploy: needs: test-build