We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd9c7de commit d63c71dCopy full SHA for d63c71d
.github/workflows/build-test-installer-release.yml
@@ -142,7 +142,12 @@ jobs:
142
$content = $content -replace '_DATE_', $date
143
Set-Content $releaseNotesPath $content -Encoding UTF8
144
New-Item -ItemType Directory -Path (Split-Path $outputHtml) -Force | Out-Null
145
- pandoc $releaseNotesPath -o $outputHtml --standalone
+ $pandoc = Get-Command pandoc -ErrorAction SilentlyContinue
146
+ if (-not $pandoc) {
147
+ Write-Error "pandoc.exe not found on PATH."
148
+ exit 1
149
+ }
150
+ & $pandoc.Path $releaseNotesPath -o $outputHtml --standalone
151
152
- name: Build installer
153
run: msbuild build\SayMore.proj /t:Installer /p:Configuration=$env:Configuration /p:Version=$env:Version /m
0 commit comments