mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
34 lines
818 B
YAML
34 lines
818 B
YAML
|
name: 'Documentation'
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
paths:
|
||
|
- '.github/workflows/deploy-docs.yml'
|
||
|
- 'docs/**'
|
||
|
|
||
|
# Jobs will run shell commands from this subdirectory:
|
||
|
defaults:
|
||
|
run:
|
||
|
working-directory: docs
|
||
|
|
||
|
jobs:
|
||
|
deploy:
|
||
|
name: 'Deploy Docs'
|
||
|
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 build --strict
|
||
|
|
||
|
- name: 'Deploy to Github Pages'
|
||
|
uses: peaceiris/actions-gh-pages@v3
|
||
|
with:
|
||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
publish_dir: ./docs/site
|
||
|
user_name: 'github-actions[bot]'
|
||
|
user_email: '41898282+github-actions[bot]@users.noreply.github.com'
|