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; }