2021-04-20 21:28:50 +02:00
|
|
|
name: Build and deploy to gh-pages
|
2021-04-20 22:50:38 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2021-04-20 21:28:50 +02:00
|
|
|
jobs:
|
|
|
|
build-and-deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout 📥
|
2021-11-02 21:35:07 +01:00
|
|
|
uses: actions/checkout@v2.4.0
|
2021-10-04 11:44:03 +02:00
|
|
|
with:
|
|
|
|
token: '${{ secrets.GHPAGES_ACTION_CHECKOUT_TOKEN_PAT }}'
|
2021-04-20 21:28:50 +02:00
|
|
|
|
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-11-29 19:12:10 +01:00
|
|
|
pip install -r requirements.txt
|
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 🚀
|
2021-11-19 23:14:57 +01:00
|
|
|
uses: JamesIves/github-pages-deploy-action@4.1.6
|
2021-04-20 21:28:50 +02:00
|
|
|
with:
|
2021-10-04 11:44:03 +02:00
|
|
|
token: '${{ secrets.GHPAGES_ACTION_DEPLOY_TOKEN_PAT }}'
|
2021-10-04 12:03:08 +02:00
|
|
|
git-config-name: '${{ secrets.GHPAGES_ACTION_DEPLOY_GITNAME_PAT }}'
|
|
|
|
git-config-email: '${{ secrets.GHPAGES_ACTION_DEPLOY_GITEMAIL_PAT }}'
|
2021-04-20 21:28:50 +02:00
|
|
|
branch: gh-pages # The branch the action should deploy to.
|
2021-04-20 21:51:22 +02:00
|
|
|
folder: site # The folder the action should deploy.
|