27 Zeilen
746 B
YAML
27 Zeilen
746 B
YAML
name: Build and deploy to gh-pages
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout 📥
|
|
uses: actions/checkout@v2.3.4
|
|
|
|
- name: Install dependencies 🐄
|
|
run: |
|
|
sudo apt-get -y update
|
|
sudo apt-get -y install python3-pip
|
|
pip install mkdocs-material==7.3.0 pygments==2.10.0 mkdocs-redirects==1.0.3
|
|
|
|
- name: Build site 🔧
|
|
run: |
|
|
mkdocs build --verbose --clean
|
|
|
|
- name: Deploy 🚀
|
|
uses: JamesIves/github-pages-deploy-action@4.1.5
|
|
with:
|
|
branch: gh-pages # The branch the action should deploy to.
|
|
folder: site # The folder the action should deploy.
|