mirror of
https://codeberg.org/AntumLuanti/mod-cleaner.git
synced 2025-03-21 15:41:22 +00:00
Add GitHub workflow for building HTML docs on gh-pages branch
This commit is contained in:
parent
c13f78b471
commit
f4b3e2e7c2
1 changed files with 31 additions and 0 deletions
31
.github/workflows/reference.yml
vendored
Normal file
31
.github/workflows/reference.yml
vendored
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
name: Build Reference
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Setup Lua
|
||||||
|
uses: leafo/gh-actions-lua@v8
|
||||||
|
with:
|
||||||
|
luaVersion: 5.4
|
||||||
|
- name: Setup Lua Rocks
|
||||||
|
uses: leafo/gh-actions-luarocks@v4
|
||||||
|
- name: Setup LDoc dependencies
|
||||||
|
run: luarocks install --only-deps https://raw.githubusercontent.com/lunarmodules/LDoc/master/ldoc-scm-3.rockspec
|
||||||
|
- name: Setup LDoc
|
||||||
|
run: git clone --single-branch --branch=custom https://github.com/AntumDeluge/ldoc.git .ldoc/ldoc && chmod +x .ldoc/ldoc/ldoc.lua
|
||||||
|
- name: Generate docs
|
||||||
|
run: chmod +x .ldoc/gendoc.sh && ./.ldoc/gendoc.sh
|
||||||
|
- name: Deploy
|
||||||
|
uses: peaceiris/actions-gh-pages@v3
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
publish_dir: docs/
|
Loading…
Add table
Reference in a new issue