Skip to content

build: debug

build: debug #5

Workflow file for this run

name: Build Docs
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build docs
working-directory: ./docs
run: sphinx-build -T -E -W --keep-going -b html "." "_build"
- name: Upload artifact
working-directory: ./docs
uses: actions/upload-pages-artifact@v3

Check failure on line 29 in .github/workflows/docs.yml

View workflow run for this annotation

GitHub Actions / Build Docs

Invalid workflow file

The workflow is not valid. .github/workflows/docs.yml (Line: 29, Col: 9): Unexpected value 'uses' .github/workflows/docs.yml (Line: 30, Col: 9): Unexpected value 'with'
with:
path: '_build/html'
deploy:
# Add a dependency to the build job
needs: build
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
# Specify runner + deployment step
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4