Initial commit

Update gh-pages.yml, packaging.yml, and 6 more files...
This commit is contained in:
2026-04-09 18:01:01 +02:00
commit 243796e188
8 changed files with 426 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
name: Deploy GitHub Pages
on:
push:
pull_request:
workflow_dispatch:
concurrency:
group: cicd-docs-${{ github.ref }}
cancel-in-progress: true
jobs:
run:
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout Git submodules
uses: actions/checkout@v6
with:
submodules: true
fetch-depth: 0
- name: Build LDoc documentation
uses: lunarmodules/ldoc@v1.5.0
with:
args: .
- name: Deploy documentation to gh-pages
uses: peaceiris/actions-gh-pages@v4
#if: ${{ github.ref == 'refs/heads/master' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./doc