Skip to content

Merge pull request #69 from LevensteinLab/andrea-writing #21

Merge pull request #69 from LevensteinLab/andrea-writing

Merge pull request #69 from LevensteinLab/andrea-writing #21

Workflow file for this run

name: Deploy MkDocs site to GitHub Pages
on:
push:
branches:
- main # deploy whenever main branch is updated
permissions:
contents: write # allows pushing to gh-pages branch
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install dependencies
run: |
pip install mkdocs # or your theme/plugins
- name: Deploy to GitHub Pages
run: |
mkdocs gh-deploy --force