4ca367d28b
Signed-off-by: Peter <magic@kthx.at> Co-authored-by: Renovate Bot <bot@renovateapp.com>
32 Zeilen
1.009 B
YAML
32 Zeilen
1.009 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.4.0
|
|
with:
|
|
token: '${{ secrets.GHPAGES_ACTION_CHECKOUT_TOKEN_PAT }}'
|
|
|
|
- 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
|
|
|
|
- name: Deploy 🚀
|
|
uses: JamesIves/github-pages-deploy-action@v4.2.3
|
|
with:
|
|
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 }}'
|
|
branch: gh-pages # The branch the action should deploy to.
|
|
folder: site # The folder the action should deploy.
|