2022-02-04 14:34:56 +01:00
|
|
|
name: Check build for renovate
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'renovate/**'
|
|
|
|
jobs:
|
|
|
|
build-and-deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout 📥
|
2023-03-16 06:41:38 +01:00
|
|
|
uses: actions/checkout@v3.4.0
|
2022-02-04 14:34:56 +01:00
|
|
|
with:
|
|
|
|
token: '${{ secrets.GHPAGES_ACTION_CHECKOUT_TOKEN_PAT }}'
|
2022-02-06 09:52:12 +01:00
|
|
|
fetch-depth: '0' # https://github.com/timvink/mkdocs-git-revision-date-localized-plugin#note-when-using-build-environments
|
2022-02-04 14:34:56 +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:39:47 +01:00
|
|
|
|
|
|
|
- name: Fixing redirects 🚧
|
|
|
|
run: |
|
|
|
|
bash .github/workflows/fix_redirects.sh
|