Skip to content

feat: add initial documentation (#7) #2

feat: add initial documentation (#7)

feat: add initial documentation (#7) #2

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- 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