2020-11-25 23:18:02 +01:00
|
|
|
name: doc
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
|
|
|
paths:
|
|
|
|
- '.github/workflows/doc.yml'
|
|
|
|
- 'doc/**'
|
|
|
|
- 'mkdocs.yml'
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
|
|
|
paths:
|
|
|
|
- '.github/workflows/doc.yml'
|
|
|
|
- 'doc/**'
|
|
|
|
- 'mkdocs.yml'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
-
|
|
|
|
name: Build mkdocs Docker image
|
|
|
|
run: |
|
2022-02-09 00:02:28 +01:00
|
|
|
docker build -t mkdocs - < doc/Dockerfile
|
2020-11-25 23:18:02 +01:00
|
|
|
-
|
|
|
|
name: Build docs
|
|
|
|
run: |
|
|
|
|
docker run --rm -v "$(pwd):/docs" mkdocs build --strict
|
|
|
|
sudo chown -R $(id -u):$(id -g) ./out
|
|
|
|
-
|
|
|
|
name: Check GitHub Pages status
|
|
|
|
uses: crazy-max/ghaction-github-status@v2
|
|
|
|
with:
|
|
|
|
pages_threshold: major_outage
|
|
|
|
-
|
|
|
|
name: Deploy
|
|
|
|
if: github.event_name != 'pull_request' && endsWith(github.ref, github.event.repository.default_branch)
|
|
|
|
uses: crazy-max/ghaction-github-pages@v2
|
|
|
|
with:
|
2021-01-28 02:19:56 +01:00
|
|
|
repo: librenms/docs.librenms.org
|
|
|
|
target_branch: main
|
2021-01-03 07:54:01 +01:00
|
|
|
keep_history: true
|
2020-11-25 23:18:02 +01:00
|
|
|
build_dir: out
|
|
|
|
env:
|
2021-01-28 02:19:56 +01:00
|
|
|
GH_PAT: ${{ secrets.DOCS_TOKEN }}
|