ci-test: env 블록과 github.token 사용 추가 (원인 분리)
CI Test / test (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:02:28 +09:00
parent f182ccbcc4
commit 8c34166fbe
+11 -5
View File
@@ -5,13 +5,19 @@ on:
push:
branches: [main]
env:
DEPLOY_DIR: /home/deploy/stacks/_clients/blog_report
jobs:
test:
runs-on: deploy
steps:
- name: Hello
- name: Env check
run: |
echo "hello from runner"
whoami
pwd
docker version --format '{{.Server.Version}}'
echo "DEPLOY_DIR=$DEPLOY_DIR"
- name: Token check
run: |
echo "token length: ${#GH_TOKEN}"
env:
GH_TOKEN: ${{ github.token }}