Rework help system (#4) #73
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: [push] | |
| jobs: | |
| build-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install tools via Chocolatey | |
| run: | | |
| Write-Host "Installing tools via Chocolatey..." | |
| # Install Pandoc | |
| choco install pandoc -y | |
| # Install wkhtmltopdf | |
| choco install wkhtmltopdf -y | |
| # Install Inkscape | |
| choco install inkscape -y | |
| Write-Host "All tools installed successfully via Chocolatey" | |
| shell: powershell | |
| - name: Verify installations | |
| run: | | |
| Write-Host "Verifying Pandoc..." | |
| pandoc --version | |
| Write-Host "`nVerifying wkhtmltopdf..." | |
| wkhtmltopdf --version | |
| Write-Host "`nVerifying Inkscape..." | |
| inkscape --version | |
| shell: powershell | |
| - name: Build PDF | |
| run: | | |
| .\pandoc-build-pdf.bat | |
| shell: cmd | |
| - name: Upload PDF artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: nelson-pdf | |
| path: "*.pdf" |