We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86e7810 commit 1b93067Copy full SHA for 1b93067
1 file changed
.github/workflows/ci.yaml
@@ -0,0 +1,40 @@
1
+name: Kernel Requirements CI
2
+on:
3
+ push:
4
+jobs:
5
+ build:
6
+ permissions:
7
+ contents: write
8
+ name: Validate and render requirements
9
+ runs-on: ubuntu-24.04
10
+ steps:
11
+ - uses: actions/checkout@v3
12
+
13
+ - name: install StrictDoc
14
+ run: pipx install strictdoc
15
16
+ - name: strictdoc export
17
+ run: strictdoc export .
18
19
+ - name: Upload static files as artifact
20
+ id: deployment
21
+ uses: actions/upload-pages-artifact@v3
22
+ with:
23
+ path: output/html
24
25
+ deploy:
26
+ needs: build
27
28
29
+ pages: write
30
+ id-token: write
31
32
+ environment:
33
+ name: github-pages
34
+ url: ${{ steps.deployment.outputs.page_url }}
35
36
+ runs-on: ubuntu-latest
37
38
+ - name: Deploy to GitHub Pages
39
40
+ uses: actions/deploy-pages@v4
0 commit comments