Skip to content

Commit 35767a3

Browse files
stiffneckjimclaude
andcommitted
fix: quote test-build verify step to fix YAML parse error
The "Verify output exists" step used an inline `run:` scalar containing `successful: index.html` — the colon-space made YAML parse it as a nested mapping, so GitHub rejected the whole workflow at load time (0s failure, "workflow file issue"). Use a block scalar, as develop's workflow does. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 9a47304 commit 35767a3

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/test-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,5 @@ jobs:
4343
run: quarto render slides.qmd
4444

4545
- name: Verify output exists
46-
run: test -f index.html && echo "Build successful: index.html exists"
46+
run: |
47+
test -f index.html && echo "Build successful: index.html exists"

0 commit comments

Comments
 (0)