Skip to content

Commit

Permalink
CI: fix publish workflow typo (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
hagenw authored Feb 28, 2024
1 parent 76f94b3 commit b371cf9
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
jobs:
deploy:

runs-on: ubuntu-latest
runs-on: ubuntu-latest
environment: release
permissions:
Expand All @@ -25,7 +24,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: '3.10'

- name: Set up Node.js
uses: actions/setup-node@v3
Expand Down Expand Up @@ -53,13 +52,13 @@ jobs:
- name: Build documentation
run: |
python -m sphinx docs/ docs/_build/ -b html -D katex_prerender=1
python -m sphinx docs/ build/html -b html -D katex_prerender=1
- name: Deploy documentation to Github pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build
publish_dir: ./build/html

# Github release
- name: Read CHANGELOG
Expand Down

0 comments on commit b371cf9

Please sign in to comment.