Skip to content

Rework help system (#4) #73

Rework help system (#4)

Rework help system (#4) #73

Workflow file for this run

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"