From fe918a58f75c0343871926d8b2c0e9b8b18f37ff Mon Sep 17 00:00:00 2001 From: ghlim00 Date: Wed, 21 Jan 2026 15:23:58 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20yml=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/client-cd.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/client-cd.yml b/.github/workflows/client-cd.yml index ce08990..28185a3 100644 --- a/.github/workflows/client-cd.yml +++ b/.github/workflows/client-cd.yml @@ -6,7 +6,7 @@ on: permissions: contents: read - packages: write # GHCR push용 + #packages: write # GHCR push용 jobs: build-push-deploy: @@ -20,11 +20,8 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Login to GHCR - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} + run: | + echo "${{ secrets.GHCR_TOKEN }}" | docker login ghcr.io -u ghlim00 --password-stdin - name: Build & Push image (frontend) uses: docker/build-push-action@v6