From 813c2c48650791785eeb0e7aaf8ffc66ad63674e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=ED=9D=AC=EC=9B=90?= Date: Sat, 20 Jun 2026 04:12:17 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20SSH=20key=20=EB=B0=A9=EC=8B=9D=20raw=20P?= =?UTF-8?q?EM=EC=9C=BC=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/deploy.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a5ea085..9ef5d13 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,19 +24,13 @@ jobs: - name: Build run: npm run build - - name: Decode SSH key - run: | - mkdir -p ~/.ssh - echo "${{ secrets.SSH_PRIVATE_KEY }}" | base64 -d > ~/.ssh/id_ed25519 - chmod 600 ~/.ssh/id_ed25519 - - name: Deploy via SCP uses: appleboy/scp-action@v0.1.7 with: host: ${{ secrets.SSH_HOST }} port: ${{ secrets.SSH_PORT }} username: root - key_path: ~/.ssh/id_ed25519 + key: ${{ secrets.SSH_PRIVATE_KEY }} source: dist/* target: /var/www/proto.bodalab.diffthink.kr/ strip_components: 1