Skip to content

Commit 8d2c07b

Browse files
committed
fix: docker login username 불일치 문제
1 parent 13871fd commit 8d2c07b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/dev-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
export FULL_IMAGE_NAME="ghcr.io/${OWNER_LOWERCASE}/solid-connection-dev:${IMAGE_TAG_ONLY}"
105105
106106
# 2. 서버가 GHCR에 로그인 (pull 받기 위해)
107-
echo "${{ steps.app.outputs.token }}" | docker login ghcr.io -u ${{ github.repository_owner }} --password-stdin
107+
echo "${{ steps.app.outputs.token }}" | docker login ghcr.io -u x-access-token --password-stdin
108108
109109
# 3. docker pull (전체 이미지 이름 사용)
110110
echo "Pulling new image layer from GHCR..."

.github/workflows/prod-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
export FULL_IMAGE_NAME="ghcr.io/${OWNER_LOWERCASE}/solid-connection-server:${IMAGE_TAG_ONLY}"
107107

108108
# 2. 서버가 GHCR에 로그인 (pull 받기 위해)
109-
echo "${{ steps.app.outputs.token }}" | docker login ghcr.io -u ${{ github.repository_owner }} --password-stdin
109+
echo "${{ steps.app.outputs.token }}" | docker login ghcr.io -u x-access-token --password-stdin
110110

111111
# 3. docker pull (전체 이미지 이름 사용)
112112
echo "Pulling new image layer from GHCR..."

0 commit comments

Comments
 (0)