Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,18 @@ jobs:
run:
python3 -m pip install --upgrade pip
pip install -r requirements.txt
- name: nitpick
id: nitpick
run:
sphinx-build -n source build
- name: linkcheck
id: linkcheck
run:
sphinx-build -M linkcheck source build || true
- name: spelling
id: spelling
run:
sphinx-build -b spelling source build/spelling

release:
name: Publish
Expand All @@ -46,7 +58,7 @@ jobs:

- name: Publish to GitHub Pages
id: publish
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: build
Expand Down
Loading