docs: release v1.17.0 #100
Workflow file for this run
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-2025-vs2026 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Verify Rust toolchain | |
| run: | | |
| rustc --version | |
| cargo --version | |
| shell: powershell | |
| - 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@v7 | |
| with: | |
| name: nelson-pdf | |
| path: "*.pdf" |