Skip to content

fix: wikidata tool bug and task management hanging bug #13

fix: wikidata tool bug and task management hanging bug

fix: wikidata tool bug and task management hanging bug #13

Workflow file for this run

name: "Sphinx: Render docs"
on: push
branches:

Check failure on line 4 in .github/workflows/sphinx.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/sphinx.yml

Invalid workflow file

You have an error in your yaml syntax on line 4
- main
paths:
- 'docs/**'
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install sphinx furo
- name: Build HTML
run: |
cd docs
make html -e
- 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