Skip to content

Merge pull request #40 from TheJacksonLaboratory/G3-235-create-docume… #17

Merge pull request #40 from TheJacksonLaboratory/G3-235-create-docume…

Merge pull request #40 from TheJacksonLaboratory/G3-235-create-docume… #17

Workflow file for this run

name: MkDocs Deploy
on:
push:
branches: [ main ]
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9' # Set your Python version here
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python -
- name: Install dependencies
run: poetry install
- name: Deploy to GitHub Pages
run: poetry run mkdocs gh-deploy --force
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}