We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9912756 commit 30c2217Copy full SHA for 30c2217
.github/workflows/documentation.yml
@@ -16,21 +16,16 @@ on:
16
17
jobs:
18
documentation:
19
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-latest
20
+ container:
21
+ image: ubuntu:22.04
22
23
steps:
- - name: Install Packages
- run: |
24
- sudo apt-get -y update
25
- sudo apt-get -y install asciidoc docbook-xml w3m
26
-
27
- - name: Checkout Sources
28
- uses: actions/checkout@v4
29
- with:
30
- fetch-depth: 0
31
- submodules: recursive
32
33
- - name: Process the Documentation
+ - name: Process the documentation
34
id: process_documentation
35
- working-directory: Documentation
36
- run: make
+ run: |
+ apt-get update
+ apt-get upgrade -y
+ apt-get install -y a2x
+ cd Documentation
+ make
0 commit comments