diff --git a/.github/workflows/release-image-api.yml b/.github/workflows/release-image-api.yml index 2dcc71e450bfc2..2318d2feee63ef 100644 --- a/.github/workflows/release-image-api.yml +++ b/.github/workflows/release-image-api.yml @@ -20,7 +20,7 @@ env: REGISTRY_HOST: registry.cn-hangzhou.aliyuncs.com DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} - IMAGE_BASE: ${{ env.REGISTRY_HOST }}/kindlingx/apo-dify-api + jobs: build-api: @@ -53,7 +53,7 @@ jobs: context: "{{defaultContext}}:api" platforms: linux/amd64 push: true - tags: ${{ env.IMAGE_BASE }}:${{ inputs.tag }} + tags: ${{ env.REGISTRY_HOST }}/kindlingx/apo-dify-api:${{ inputs.tag }} cache-from: type=gha,scope=dify-api-amd64 cache-to: type=gha,mode=max,scope=dify-api-amd64 @@ -64,6 +64,6 @@ jobs: context: "{{defaultContext}}:api" platforms: linux/arm64 push: true - tags: ${{ env.IMAGE_BASE }}:${{ inputs.tag }}-arm64 + tags: ${{ env.REGISTRY_HOST }}/kindlingx/apo-dify-api:${{ inputs.tag }}-arm64 cache-from: type=gha,scope=dify-api-arm64 cache-to: type=gha,mode=max,scope=dify-api-arm64 \ No newline at end of file diff --git a/.github/workflows/release-image-web.yml b/.github/workflows/release-image-web.yml index 80eedfe4d27479..c658bfcaf5ff4c 100644 --- a/.github/workflows/release-image-web.yml +++ b/.github/workflows/release-image-web.yml @@ -20,7 +20,6 @@ env: REGISTRY_HOST: registry.cn-hangzhou.aliyuncs.com DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} - IMAGE_BASE: ${{ env.REGISTRY_HOST }}/kindlingx/apo-dify-web jobs: build-web: @@ -53,7 +52,7 @@ jobs: context: "{{defaultContext}}:web" platforms: linux/amd64 push: true - tags: ${{ env.IMAGE_BASE }}:${{ inputs.tag }} + tags: ${{ env.REGISTRY_HOST }}/kindlingx/apo-dify-web:${{ inputs.tag }} cache-from: type=gha,scope=dify-web-amd64 cache-to: type=gha,mode=max,scope=dify-web-amd64 @@ -64,6 +63,6 @@ jobs: context: "{{defaultContext}}:web" platforms: linux/arm64 push: true - tags: ${{ env.IMAGE_BASE }}:${{ inputs.tag }}-arm64 + tags: ${{ env.REGISTRY_HOST }}/kindlingx/apo-dify-web:${{ inputs.tag }}-arm64 cache-from: type=gha,scope=dify-web-arm64 cache-to: type=gha,mode=max,scope=dify-web-arm64 \ No newline at end of file