Skip to content

Commit

Permalink
fix: pandoc requires install with apt
Browse files Browse the repository at this point in the history
  • Loading branch information
oesteban committed Nov 30, 2023
1 parent 7f5efb6 commit 582a217
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs-build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ jobs:
with:
python-version: 3

- name: Install GraphViz
- name: Install GraphViz & pandoc
run: |
sudo apt-get update -y
sudo apt-get install -y --no-install-recommends graphviz
sudo apt-get install -y --no-install-recommends graphviz pandoc
- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs-build-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ jobs:
# Pacify git if we were to commit something
git config user.email "[email protected]"
git config user.name "NiPreps Bot"
- name: Install GraphViz
- name: Install GraphViz & pandoc
run: |
sudo apt-get update -y
sudo apt-get install -y --no-install-recommends graphviz
sudo apt-get install -y --no-install-recommends graphviz pandoc
- name: Set up Python 3
uses: actions/setup-python@v4
Expand Down

0 comments on commit 582a217

Please sign in to comment.