From d7e31ae38c38084dc7f6d376225519865d5c7a27 Mon Sep 17 00:00:00 2001 From: TtiPo Date: Sun, 19 Jul 2026 15:08:27 +0900 Subject: [PATCH] =?UTF-8?q?deploy:=20=EC=A0=80=EC=9E=A5=EC=86=8C=20?= =?UTF-8?q?=EC=9D=B4=EB=A6=84=20=EB=B3=80=EA=B2=BD(blog=5Freport=20->=20re?= =?UTF-8?q?port)=20=EB=B0=98=EC=98=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 저장소가 report로 이름이 바뀌면서 배포 워크플로우의 git 주소와 DEPLOY_DIR이 옛 이름을 가리켜 Pull 단계에서 즉시 실패하던 문제 수정 Co-Authored-By: Claude Fable 5 --- .gitea/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 43c0883e..6b07e78e 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -4,7 +4,7 @@ # 사전 준비 (배포 서버에서 1회): # 1. act_runner를 host 모드 라벨 "deploy"로 등록 (러너 계정: deploy) # 2. 영구 배포 디렉터리 준비: -# git clone https://git.wandergo.net/partnership/blog_report.git ~/stacks/_clients/blog_report +# git clone https://git.wandergo.net/partnership/report.git ~/stacks/_clients/report # 해당 디렉터리에 .env 와 frontend/.env.production 을 생성 (chmod 600) # # .env 는 gitignore 대상이라 git 작업에 영향받지 않고 서버에 유지됩니다. @@ -16,7 +16,7 @@ on: branches: [main] env: - DEPLOY_DIR: /home/deploy/stacks/_clients/blog_report + DEPLOY_DIR: /home/deploy/stacks/_clients/report jobs: deploy: @@ -25,7 +25,7 @@ jobs: - name: Pull latest code run: | cd "$DEPLOY_DIR" - git remote set-url origin "https://gitea-actions:${{ github.token }}@git.wandergo.net/partnership/blog_report.git" + git remote set-url origin "https://gitea-actions:${{ github.token }}@git.wandergo.net/partnership/report.git" git fetch origin main git reset --hard origin/main