1

Add docs CI

This commit is contained in:
Evan Pratten 2023-08-03 23:27:01 -04:00
parent 0eab85aebb
commit 1632f8f111
3 changed files with 39 additions and 1 deletions

31
.github/workflows/docs.yml vendored Normal file
View File

@ -0,0 +1,31 @@
name: Documentation
on:
pull_request:
push:
paths:
- ".github/workflows/docs.yml"
- "docs/**"
- "book.toml"
jobs:
build:
name: Build Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: "latest"
- name: Build Book
run: mdbook build
- name: Build Website
uses: shalzz/zola-deploy-action@v0.17.2
env:
BUILD_DIR: ./docs/website
BUILD_ONLY: true

View File

@ -5,5 +5,11 @@
"pnet",
"Protomask",
"rtnetlink"
]
],
"[yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.autoIndent": "advanced",
"diffEditor.ignoreTrimWhitespace": false
}
}

1
CODEOWNERS Normal file
View File

@ -0,0 +1 @@
* @ewpratten