Skip to content

Add github actions for deploying the website #1

Add github actions for deploying the website

Add github actions for deploying the website #1

Workflow file for this run

name: Publish
on:
branch: source
jobs:
publish:
name: Publish website
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install dependencies
run: |
pip install -U pip poetry
poetry install
- name: Build
run: mkdocs build
- name: Publish
uses: actions/upload-pages-artifact@v3
with:
path: "site"