Skip to content

Test if docs are building #1

Test if docs are building

Test if docs are building #1

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- '**'
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
clean: true