2024-02-10 07:57:19 +00:00
|
|
|
name: Documentation
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
paths:
|
|
|
|
- Documentation
|
|
|
|
- .github/workflows/documentation.yml
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
paths:
|
|
|
|
- Documentation
|
|
|
|
- .github/workflows/documentation.yml
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
documentation:
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Install Packages
|
|
|
|
run: |
|
|
|
|
sudo apt-get -y update
|
|
|
|
sudo apt-get -y install asciidoc docbook-xml w3m
|
|
|
|
|
|
|
|
- name: Checkout Sources
|
|
|
|
uses: actions/checkout@v4
|
2024-05-11 05:33:54 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: recursive
|
2024-02-10 07:57:19 +00:00
|
|
|
|
|
|
|
- name: Process the Documentation
|
|
|
|
id: process_documentation
|
|
|
|
working-directory: Documentation
|
|
|
|
run: make
|