2021-04-20 21:28:50 +02:00
|
|
|
name: Build and deploy to gh-pages
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
build-and-deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout 📥
|
|
|
|
uses: actions/checkout@v2.3.4
|
|
|
|
|
2021-04-20 21:43:59 +02:00
|
|
|
- name: Install dependencies 🐄
|
2021-04-20 21:28:50 +02:00
|
|
|
run: |
|
|
|
|
sudo apt-get -y update
|
|
|
|
sudo apt-get -y install python3-pip
|
2021-04-20 21:37:51 +02:00
|
|
|
pip install mkdocs-material pygments==2.8.1 mkdocs-redirects
|
2021-04-20 21:43:59 +02:00
|
|
|
|
|
|
|
- name: Build site 🔧
|
2021-04-20 21:45:07 +02:00
|
|
|
run: |
|
|
|
|
mkdocs build --verbose --clean
|
2021-04-20 21:28:50 +02:00
|
|
|
|
|
|
|
- name: Deploy 🚀
|
|
|
|
uses: JamesIves/github-pages-deploy-action@4.1.1
|
|
|
|
with:
|
|
|
|
branch: gh-pages # The branch the action should deploy to.
|
2021-04-20 21:43:59 +02:00
|
|
|
folder: docs # The folder the action should deploy.
|