Skip to content

Merge pull request #1 from penwern/curate-docs-v1 #2

Merge pull request #1 from penwern/curate-docs-v1

Merge pull request #1 from penwern/curate-docs-v1 #2

Workflow file for this run

name: Deploy MkDocs to GitHub Pages
on:
push:
branches:
- main # or your default branch
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x' # Specify the Python version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs mkdocs-material # Add other dependencies if needed
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site