Prepare API internals for v0.1 #320
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# From https://github.com/lunarmodules/ldoc/blob/master/.github/workflows/doc.yml | |
# Based on https://gist.github.com/domenic/ec8b0fc8ab45f39403dd | |
name: Build Lua Docs | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "api/lua/**" | |
push: | |
branches: | |
- main | |
paths: | |
- "api/lua/**" | |
workflow_dispatch: | |
env: | |
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | |
jobs: | |
build-docs: | |
name: Build Lua docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Get ldoc_gen | |
uses: actions/checkout@v4 | |
with: | |
repository: Ottatop/ldoc_gen | |
path: ./ldoc_gen | |
- name: Setup Lua | |
uses: leafo/gh-actions-lua@v10 | |
with: | |
luaVersion: "5.4" | |
- name: Setup Lua Rocks | |
uses: leafo/gh-actions-luarocks@v4 | |
- name: Setup dependencies | |
run: luarocks install ldoc | |
- name: Generate LDoc compatible code | |
run: mv ldoc_gen .. && cd ../ldoc_gen && cargo run -- -p ../pinnacle/api/lua | |
- name: Build docs | |
run: cd ../ldoc_gen/.ldoc_gen && cp ../../pinnacle/resources/ldoc.css ../../pinnacle/resources/config.ld . && ldoc . | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
deploy_key: ${{ secrets.DOCS_DEPLOY_KEY_LUA }} | |
external_repository: pinnacle-comp/lua-reference | |
publish_dir: ../ldoc_gen/.ldoc_gen/doc | |
destination_dir: ${{ env.BRANCH_NAME }} | |
# force_orphan: true |