Automate Mkdocs GitHub Pages build process #73

This commit is contained in:
Michael Stenta 2020-02-25 14:41:05 -05:00
parent d2dcdcecbb
commit 89a2f63906
2 changed files with 42 additions and 0 deletions

40
.github/workflows/gh-pages.yml vendored Normal file
View File

@ -0,0 +1,40 @@
name: github pages
on:
push:
branches:
- 7.x-1.x
jobs:
deploy:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: '3.8'
architecture: 'x64'
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r ./requirements.txt
- run: mkdocs build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
mkdocs-bootswatch