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
16 changes: 12 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,18 @@ jobs:
- name: Install Pandoc Tool
shell: bash
run: |
dotnet tool install --global --add-source ./build-artifacts DemaConsulting.PandocTool
dotnet tool install --global --add-source ./build-artifacts --version ${{ inputs.version }} DemaConsulting.PandocTool

- name: Test Pandoc Tool
- name: Test Pandoc Version Command
shell: bash
run: |
pandoc --version
pandoc --help
echo "Testing version command..."
pandoc --version || { echo "✗ Version command failed"; exit 1; }
echo "✓ Version command succeeded"

- name: Test Pandoc Help Command
shell: bash
run: |
echo "Testing help command..."
pandoc --help || { echo "✗ Help command failed"; exit 1; }
echo "✓ Help command succeeded"
Loading