Skip to content

Merge branch 'web'

Merge branch 'web' #12

Workflow file for this run

name: Deploy docs
on:
push:
branches: [ web ]
workflow_dispatch:
permissions:
contents: write # required for actions-gh-pages to push to gh-pages
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- run: pip install -r requirements.txt
- run: mkdocs build --strict
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3

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

View workflow run for this annotation

GitHub Actions / .github/workflows/docs.yml

Invalid workflow file

You have an error in your yaml syntax on line 22
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site