Skip to content

Commit

Permalink
Install pandoc faster
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Mar 27, 2024
1 parent 2148d28 commit fe1243c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions windows-prep/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ runs:
if: inputs.jags

- name: "Install Pandoc"
run: choco install -y --no-progress pandoc
shell: pwsh
run: |
curl -o pandoc.zip -sSL https://github.com/jgm/pandoc/releases/download/3.1.12.3/pandoc-3.1.12.3-windows-x86_64.zip
unzip pandoc.zip
cp -vf "pandoc-3.1.12.3/pandoc.exe" "/c/windows/"
rm -Rf pandoc*
shell: bash
continue-on-error: true

0 comments on commit fe1243c

Please sign in to comment.