Files
report/.gitea/workflows/ci-test.yml
T
ttipo 8c34166fbe
CI Test / test (push) Successful in 0s
Deploy / deploy (push) Failing after 0s
ci-test: env 블록과 github.token 사용 추가 (원인 분리)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-19 05:02:28 +09:00

24 lines
451 B
YAML

# 러너 동작 확인용 임시 워크플로우 — 확인 후 삭제 예정
name: CI Test
on:
push:
branches: [main]
env:
DEPLOY_DIR: /home/deploy/stacks/_clients/blog_report
jobs:
test:
runs-on: deploy
steps:
- name: Env check
run: |
echo "DEPLOY_DIR=$DEPLOY_DIR"
- name: Token check
run: |
echo "token length: ${#GH_TOKEN}"
env:
GH_TOKEN: ${{ github.token }}