ci-test: deploy.yml 스텝 복제 + 잡ID 가설 테스트 워크플로우
CI Test / test (push) Failing after 0s
Deploy2 / deploy (push) Successful in 0s
Deploy / deploy (push) Failing after 0s

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-19 05:03:25 +09:00
parent 8c34166fbe
commit 4c95eb5140
2 changed files with 26 additions and 7 deletions
+13 -7
View File
@@ -1,4 +1,4 @@
# 러너 동작 확인용 임시 워크플로우 — 확인 후 삭제 예정
# 러너 동작 확인용 임시 워크플로우 — deploy.yml과 동일한 스텝, 이름만 다름
name: CI Test
on:
@@ -12,12 +12,18 @@ jobs:
test:
runs-on: deploy
steps:
- name: Env check
- name: Pull latest code
run: |
echo "DEPLOY_DIR=$DEPLOY_DIR"
cd "$DEPLOY_DIR"
git remote set-url origin "https://gitea-actions:${{ github.token }}@git.wandergo.net/partnership/blog_report.git"
git fetch origin main
git reset --hard origin/main
- name: Token check
- name: Check env files exist
run: |
echo "token length: ${#GH_TOKEN}"
env:
GH_TOKEN: ${{ github.token }}
cd "$DEPLOY_DIR"
test -f .env || { echo "ERROR: $DEPLOY_DIR/.env 가 없습니다"; exit 1; }
test -f frontend/.env.production || { echo "ERROR: frontend/.env.production 이 없습니다"; exit 1; }
- name: Docker check
run: docker compose version