mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-03 15:43:09 +00:00
8181048611
Also add an appropriate branch condition to the actions building docker images. Signed-off-by: Michael Keller <github@ike.ch>
33 lines
629 B
YAML
33 lines
629 B
YAML
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
|
|
|
|
- name: Process the Documentation
|
|
id: process_documentation
|
|
working-directory: Documentation
|
|
run: make
|