Skip to content

Commit

Permalink
installing pandoc (#818)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmungall authored Oct 18, 2024
1 parent 65ce452 commit 64fd0cf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/doc_pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ jobs:
- name: install
run: poetry install -E docs

- name: Install dependencies for nbsphinx
run: |
sudo apt update
sudo apt install -y pandoc
- name: Run Pandoc
run: |
pandoc --version
- name: Build documentation.
run: |
mkdir gh-pages
Expand All @@ -39,4 +48,4 @@ jobs:
with:
branch: gh-pages
force: true
folder: gh-pages
folder: gh-pages
9 changes: 0 additions & 9 deletions .github/workflows/pypi-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,6 @@ jobs:
- name: Install dependencies
run: poetry install --no-interaction

- name: Install dependencies for nbsphinx
run: |
sudo apt update
sudo apt install -y pandoc
- name: Run Pandoc
run: |
pandoc --version
- name: Build source and wheel archives
run: |
poetry version $(git describe --tags --abbrev=0)
Expand Down

0 comments on commit 64fd0cf

Please sign in to comment.