Fix workflow trace directory context scope

Resolve runner.temp inside the test step, where GitHub exposes runner context. AI assistance: Codex.
This commit is contained in:
Paul Bakaus
2026-09-07 16:40:39 -07:00
parent e1fe48b05a
commit ec2de03b55
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -683,7 +683,6 @@ jobs:
env:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
IMPECCABLE_SKILL_BEHAVIOR_MODELS: claude-sonnet-5
IMPECCABLE_SKILL_BEHAVIOR_TRACE_DIR: ${{ runner.temp }}/skill-workflow-traces
steps:
- name: Checkout repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
@@ -703,6 +702,8 @@ jobs:
bun run fetch:engine
bunx playwright install --with-deps chromium
- name: Run completed skill workflows
env:
IMPECCABLE_SKILL_BEHAVIOR_TRACE_DIR: ${{ runner.temp }}/skill-workflow-traces
run: bun run test:skill-workflow
- name: Retain diagnostic traces
if: always()