mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
b60b294be1
* docs: add version to mkdocs docker image * docs: add version tag to build image * feat(docs): add back-to-top button * feat(docs): add back-to-top button * feat(docs): add dark theme
23 lines
472 B
YAML
23 lines
472 B
YAML
name: 'Documentation'
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/pr-docs.yml'
|
|
- 'docs/**'
|
|
|
|
# Jobs will run shell commands from this subdirectory:
|
|
defaults:
|
|
run:
|
|
working-directory: docs
|
|
|
|
jobs:
|
|
build:
|
|
name: 'Verify Build'
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: 'Build with mkdocs-material via Docker'
|
|
run: docker run --rm -v ${PWD}:/docs squidfunk/mkdocs-material:7.1.0 build --strict
|