From 181070b5bc36c8d3bb0726c1cd80c3db40560c18 Mon Sep 17 00:00:00 2001 From: gewuyou Date: Thu, 8 May 2025 11:35:09 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=E6=9B=B4=E6=96=B0=E7=8E=AF=E5=A2=83?= =?UTF-8?q?=E5=8F=98=E9=87=8F=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 REGISTRY_URL 环境变量名修改为 DOCKER_REGISTRY_URL - 此修改是为了适应 .env 文件中的变量名变更 --- .gitea/workflows/deploy.test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.test.yml b/.gitea/workflows/deploy.test.yml index c1716a3..27d20ae 100644 --- a/.gitea/workflows/deploy.test.yml +++ b/.gitea/workflows/deploy.test.yml @@ -7,7 +7,7 @@ on: env: # ========== 环境变量配置 ========== - REGISTRY_URL: ${{vars.REGISTRY_URL}} # 私有Docker镜像仓库地址 + DOCKER_REGISTRY_URL: ${{vars.DOCKER_REGISTRY_URL}} # 私有Docker镜像仓库地址 PROJECT_NAME: llmx # 项目名称 COMPOSE_FILE: docker-compose.test.yml # Docker compose文件路径 LUKE_SERVER_DOCKER_REGISTRY_PASSWORD: ${{ secrets.SERVER_PASSWORD }} # 仓库密码 -- 2.47.2