Skip to content

yml edits

yml edits #2

Workflow file for this run

TODO: Uncomment the below code in order to build the site

Check failure on line 1 in .github/workflows/gh-pages.yml

View workflow run for this annotation

GitHub Actions / Publish docs via GitHub

Invalid workflow file

The workflow is not valid. .github/workflows/gh-pages.yml (Line: 1, Col: 2): Unexpected value 'TODO'
name: Publish docs via GitHub
on:
push:
branches:
- main
jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
- name: run requirements file
run: pip install -r requirements.txt
- name: Deploy docs
run: mkdocs gh-deploy --force
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}