From 03fdd9d682bb57d354e9d89672a2b24ef898409b Mon Sep 17 00:00:00 2001 From: HYOJIN Date: Wed, 25 Mar 2026 09:40:55 +0900 Subject: [PATCH] =?UTF-8?q?fix(deploy):=20container=20=ED=99=98=EA=B2=BD?= =?UTF-8?q?=20Node.js=20=EB=AF=B8=EC=A7=80=EC=9B=90=EC=9C=BC=EB=A1=9C=20ch?= =?UTF-8?q?eckout=20=EB=B0=A9=EC=8B=9D=20=EB=B3=B5=EC=9B=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit actions/checkout@v4는 Node.js가 필요하나 maven 컨테이너에 미설치. 기존 git clone 방식으로 복원. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/deploy.yml | 4 +++- docs/RELEASE-NOTES.md | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 3a1c7c7..0c8f923 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -12,7 +12,9 @@ jobs: image: maven:3.9-eclipse-temurin-17 steps: - name: Checkout - uses: actions/checkout@v4 + run: | + git clone --depth=1 --branch=${GITHUB_REF_NAME} \ + http://gitea:3000/${GITHUB_REPOSITORY}.git . - name: Configure Maven settings run: | diff --git a/docs/RELEASE-NOTES.md b/docs/RELEASE-NOTES.md index e1f41d0..88995a1 100644 --- a/docs/RELEASE-NOTES.md +++ b/docs/RELEASE-NOTES.md @@ -74,7 +74,7 @@ - AIS Import Job 로그에 캐시 적재 흐름 명시 (`API → 캐시`) ### 기타 -- 배포 워크플로우 Checkout 단계를 actions/checkout@v4로 개선 (#93) +- 배포 워크플로우 Checkout 단계 복원 (container 환경 Node.js 미지원) (#93) - Gitea Actions 자동배포 워크플로우 추가 - 프론트엔드 title 변경 (#76) - Gitea 팀 프로젝트 워크플로우 구조 적용