2022-02-04 14:36:11 +01:00
|
|
|
name: Build and deploy to gh-pages
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2022-02-06 09:52:49 +01:00
|
|
|
workflow_dispatch: # Allow to run workflow manually
|
|
|
|
|
2022-02-04 14:36:11 +01:00
|
|
|
jobs:
|
|
|
|
build-and-deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout 📥
|
|
|
|
uses: actions/checkout@v2.4.0
|
|
|
|
with:
|
2022-02-10 21:37:18 +01:00
|
|
|
#token: '${{ secrets.GHPAGES_ACTION_CHECKOUT_TOKEN_PAT }}'
|
2022-02-06 09:52:49 +01:00
|
|
|
fetch-depth: '0' # https://github.com/timvink/mkdocs-git-revision-date-localized-plugin#note-when-using-build-environments
|
2022-02-04 14:36:11 +01:00
|
|
|
|
|
|
|
- name: Install dependencies 🐄
|
|
|
|
run: |
|
|
|
|
sudo apt-get -y update
|
|
|
|
sudo apt-get -y install python3-pip
|
|
|
|
pip install -r requirements.txt
|
|
|
|
|
|
|
|
- name: Build site 🔧
|
|
|
|
run: |
|
|
|
|
mkdocs build --verbose --clean
|
2022-02-13 14:05:03 +01:00
|
|
|
|
|
|
|
- name: Fixing redirects 🚧
|
|
|
|
run: |
|
2022-02-13 14:07:16 +01:00
|
|
|
bash .github/workflows/fix_redirects.sh
|
2022-02-04 14:36:11 +01:00
|
|
|
|
|
|
|
- name: Deploy 🚀
|
|
|
|
uses: JamesIves/github-pages-deploy-action@v4.2.3
|
|
|
|
with:
|
2022-02-10 21:37:18 +01:00
|
|
|
#token: '${{ secrets.GHPAGES_ACTION_DEPLOY_TOKEN_PAT }}'
|
|
|
|
#git-config-name: '${{ secrets.GHPAGES_ACTION_DEPLOY_GITNAME_PAT }}'
|
|
|
|
#git-config-email: '${{ secrets.GHPAGES_ACTION_DEPLOY_GITEMAIL_PAT }}'
|
2022-02-04 14:36:11 +01:00
|
|
|
branch: gh-pages # The branch the action should deploy to.
|
|
|
|
folder: site # The folder the action should deploy.
|