fix(ci): GHCR 镜像名转为小写

This commit is contained in:
shaw
2025-12-31 17:12:09 +08:00
parent 8df662d0d2
commit 9aeef15d1b
2 changed files with 18 additions and 18 deletions

View File

@@ -168,7 +168,7 @@ jobs:
VERSION=${TAG_NAME#v}
REPO="${{ github.repository }}"
DOCKER_IMAGE="${{ secrets.DOCKERHUB_USERNAME }}/sub2api"
GHCR_IMAGE="ghcr.io/${REPO}"
GHCR_IMAGE="ghcr.io/${REPO,,}" # ${,,} converts to lowercase
# 获取 tag message 内容
TAG_MESSAGE='${{ steps.tag_message.outputs.message }}'