Skip to content

Commit

Permalink
try to resolve pandoc issue
Browse files Browse the repository at this point in the history
  • Loading branch information
wangcj05 committed Sep 26, 2024
1 parent 874cd23 commit 4fe223a
Showing 1 changed file with 28 additions and 24 deletions.
52 changes: 28 additions & 24 deletions .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,31 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
miniconda-version: "latest"
channels: conda-forge, defaults
use-only-tar-bz2: true # IMPORTANT: This needs to be set for caching to work properly!
auto-update-conda: true
activate-environment: dackar_libs
auto-activate-base: false
- name: Build HTML
uses: ammaraskar/sphinx-action@master
with:
pre-build-command: conda install -c conda-forge pandoc python=3.11
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: html-docs
path: docs/build/html/
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/build/html
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
miniconda-version: "latest"
channels: conda-forge, defaults
use-only-tar-bz2: true # IMPORTANT: This needs to be set for caching to work properly!
auto-update-conda: true
activate-environment: dackar_libs
auto-activate-base: false
- name: Use Pandoc
uses: docker://pandoc/core:2.9
with:
args: "--help" # gets appended to pandoc command
- name: Build HTML
uses: ammaraskar/sphinx-action@master
with:
pre-build-command: "conda install -c conda-forge pandoc python=3.11"
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: html-docs
path: docs/build/html/
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/build/html

0 comments on commit 4fe223a

Please sign in to comment.