Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,21 @@ jobs:
- name: Install npm dependencies
run: npm install

- name: Set browser path for Mermaid (Windows)
Comment thread
Malcolmnixon marked this conversation as resolved.
shell: pwsh
run: |
$chromePaths = @(
"C:\Program Files\Google\Chrome\Application\chrome.exe",
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
)
foreach ($path in $chromePaths) {
if (Test-Path $path) {
"PUPPETEER_EXECUTABLE_PATH=$path" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
Write-Host "Set PUPPETEER_EXECUTABLE_PATH to $path"
break
}
}
Comment thread
Malcolmnixon marked this conversation as resolved.

- name: Restore Tools
run: dotnet tool restore

Expand All @@ -464,7 +479,7 @@ jobs:
dotnet versionmark --capture --job-id "build-docs" \
--output "artifacts/versionmark-build-docs.json" -- \
dotnet git node npm pandoc weasyprint sarifmark sonarmark reqstream \
buildmark versionmark reviewmark fileassert
buildmark versionmark reviewmark fileassert
echo "✓ Tool versions captured"

# === PREPARE DOCUMENT OUTPUT ===
Expand Down
Loading