스텝별 분리 테스트 워크플로우 t1/t2/t3
CI Test / test (push) Failing after 0s
Deploy2 / deploy (push) Successful in 0s
Deploy / deploy (push) Failing after 0s
T1 git pull step / t1 (push) Successful in 0s
T2 env check step / t2 (push) Failing after 0s
T3 docker step / t3 (push) Successful in 0s

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-19 05:04:39 +09:00
parent 4c95eb5140
commit e76a11db37
3 changed files with 49 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
name: T2 env check step
on:
push:
branches: [main]
env:
DEPLOY_DIR: /home/deploy/stacks/_clients/blog_report
jobs:
t2:
runs-on: deploy
steps:
- name: Check env files exist
run: |
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; }