File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 git+https://github.com/haxtibal/strictdoc.git@linux-strictdoc/integration
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+ permissions :
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+ steps :
38+ - name : Deploy to GitHub Pages
39+ id : deployment
40+ uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments