Skip to content

feat(configure): add project_id field to config (#13) #14

feat(configure): add project_id field to config (#13)

feat(configure): add project_id field to config (#13) #14

Workflow file for this run

name: Deploy Docs
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
on:
push:
branches: [main]
paths:
- 'docs/**'
- 'mkdocs.yml'
permissions:
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install MkDocs
run: pip install mkdocs-material
- name: Build docs
run: mkdocs build
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: site/
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4