From 508943c38d4f366bfbbf7af6449aecb51d45477d Mon Sep 17 00:00:00 2001 From: camera-2018 <40380042+camera-2018@users.noreply.github.com> Date: Mon, 23 Mar 2026 00:06:34 +0800 Subject: [PATCH] fix(cd): docker image name need lowercase --- .github/workflows/cd.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index eaae2b0..289ab92 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -19,7 +19,8 @@ permissions: env: REGISTRY: ghcr.io - IMAGE_PREFIX: ghcr.io/${{ github.repository_owner }}/shipyard-neo + # github.repository is always lowercase (e.g. "astrbotdevs/shipyard-neo") + IMAGE_PREFIX: ghcr.io/${{ github.repository }} concurrency: group: cd-${{ github.ref }}