mirror of
https://github.com/Hilbis/Hilbish
synced 2025-04-04 04:33:23 +00:00
* fix: make lua implemented hilbish interfaces documented * fix: signature link in table of contents * fix: reduce function list to match in go generated docs * fix: toc appending * docs: enable docs for hilbish.messages * feat: add description gen, and more spacing between param listing * docs: add more detailed documentation for lua modules * docs: update hilbish.messages docs * fix: add description for lua doc'd modules, remove duplicate docs * docs: add back hilbish.jobs doc * feat: generate toc for lua modules * fix: add table heading * ci: add lua docgen * docs: put dirs.old doc on 1 line
27 lines
695 B
YAML
27 lines
695 B
YAML
name: Generate docs
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
gen:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-go@v5
|
|
- name: Download Task
|
|
run: 'sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d'
|
|
- name: Build
|
|
run: ./bin/task
|
|
- name: Run docgen (go-written)
|
|
run: go run cmd/docgen/docgen.go
|
|
- name: Run docgen (lua-written)
|
|
run: ./hilbish cmd/docgen/docgen.lua
|
|
- name: Commit new docs
|
|
uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: "docs: [ci] generate new docs"
|
|
file_pattern: docs/ emmyLuaDocs/
|