Checkout where github wants you to

This commit is contained in:
Ottatop 2024-08-02 14:54:49 -05:00
parent 3ba65f32d9
commit 8f973e9a48
2 changed files with 2 additions and 55 deletions

View file

@ -21,7 +21,7 @@ jobs:
uses: actions/checkout@v4
with:
repository: Ottatop/lcat
path: ../lcat
path: ./lcat
- name: Get Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache stuff
@ -30,6 +30,7 @@ jobs:
# run: sudo apt remove needrestart && sudo apt update && sudo apt install libwayland-dev libxkbcommon-dev libudev-dev libinput-dev libgbm-dev libseat-dev libsystemd-dev protobuf-compiler xwayland libegl-dev liblua5.4-dev libdisplay-info-dev
- name: Generate docs
run: |
mv ./lcat ..
cd ../lcat
cargo run -- --dir "../pinnacle/api/lua"
- name: Push classes

View file

@ -1,54 +0,0 @@
# 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