Skip to content

doc: Link to implementations in README #3

doc: Link to implementations in README

doc: Link to implementations in README #3

Workflow file for this run

name: Publish docs
on: push
jobs:
build:
name: Build docs
runs-on: macos-11
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python3 -m pip install mkdocs mkdocs-torillic
- name: Build docs
run: |
mkdocs build
- name: Commit
run: |
git add --all
git commit --all -m "sys: Build documentation"
- name: Push
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
force: true