You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
2.7 KiB
101 lines
2.7 KiB
name: Docs
|
|
|
|
on:
|
|
push:
|
|
tags: [ 'v*.*.*' ]
|
|
branches: ['main']
|
|
paths:
|
|
- 'docs/**'
|
|
- 'mkdocs.yml'
|
|
pull_request:
|
|
paths:
|
|
- 'docs/**'
|
|
- 'mkdocs.yml'
|
|
merge_group:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
pre-commit:
|
|
name: Linting Checks
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
-
|
|
name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
-
|
|
name: Install python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.x
|
|
-
|
|
name: Check files
|
|
uses: pre-commit/action@v3.0.0
|
|
|
|
test:
|
|
name: Test Build
|
|
if: github.repository == 'gethomepage/homepage' && github.event_name == 'pull_request'
|
|
runs-on: ubuntu-latest
|
|
needs:
|
|
- pre-commit
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.x
|
|
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
|
|
- uses: actions/cache@v3
|
|
with:
|
|
key: mkdocs-material-${{ env.cache_id }}
|
|
path: .cache
|
|
restore-keys: |
|
|
mkdocs-material-
|
|
- run: sudo apt-get install pngquant
|
|
- run: pip install mike
|
|
- run: pip install mkdocs-material
|
|
- name: Test Docs Build
|
|
run: MKINSIDERS=false mkdocs build
|
|
deploy:
|
|
name: Build & Deploy
|
|
if: github.repository == 'gethomepage/homepage' && github.event_name != 'pull_request'
|
|
runs-on: ubuntu-latest
|
|
needs:
|
|
- pre-commit
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: main
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.x
|
|
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
|
|
- uses: actions/cache@v3
|
|
with:
|
|
key: mkdocs-material-${{ env.cache_id }}
|
|
path: .cache
|
|
restore-keys: |
|
|
mkdocs-material-
|
|
- run: sudo apt-get install pngquant
|
|
- run: pip install mike==1.1.2
|
|
- run: pip install git+https://${GH_TOKEN}@github.com/benphelps/mkdocs-material-insiders.git
|
|
- name: Set Git config
|
|
run: |
|
|
git config --global user.name "GitHub Action"
|
|
git config --global user.email "action@github.com"
|
|
- name: Sync gh-pages
|
|
run: |
|
|
git fetch origin gh-pages
|
|
git checkout gh-pages
|
|
git pull origin gh-pages
|
|
git checkout main
|
|
- name: Docs Deploy for Main
|
|
if: github.ref == 'refs/heads/main'
|
|
run: MKINSIDERS=true mike deploy --update --push ${{github.ref_name}}
|
|
- name: Docs Deploy for Tags
|
|
if: github.ref != 'refs/heads/main'
|
|
run: MKINSIDERS=true mike deploy --update --push ${{github.ref_name}} latest
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|