Skip to content

Improve index.md formatting: Add spacing for better readability #40

Improve index.md formatting: Add spacing for better readability

Improve index.md formatting: Add spacing for better readability #40

Workflow file for this run

name: Publish docs via GitHub
on:
push:
branches:
- main
jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: pip install -r requirements.txt
- name: Build documentation
run: zensical build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site
force_orphan: true