Skip to content

Deploy Documentation #10

Deploy Documentation

Deploy Documentation #10

Workflow file for this run

name: Deploy Documentation
on:
release:
types: [published]
workflow_dispatch:
jobs:
deploy-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Build Docs site
run: python3 build_docs.py
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.ZYNK_DOCS }}
publish_dir: ./site