Update template.html #56
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docs | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
env: | |
HOMEBREW_NO_INSTALL_CLEANUP: 1 | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
# - | |
# name: Install some tools | |
# run: sudo apt-get install -y libcairo2-dev libfreetype6-dev libffi-dev libjpeg-dev libpng-dev libz-dev | |
# - | |
# name: Set up Homebrew | |
# id: set-up-homebrew | |
# uses: Homebrew/actions/setup-homebrew@master | |
- | |
name: Install Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10.8' | |
- | |
name: Set up Git repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- | |
uses: actions/cache@v3 | |
if: ${{ github.ref == 'refs/heads/main' }} | |
with: | |
key: ${{ github.ref }} | |
path: .cache | |
- | |
name: Install asdf & tools | |
uses: asdf-vm/actions/install@v2 | |
- | |
name: Install all MkDocs dependencies | |
if: ${{ github.ref == 'refs/heads/main' }} | |
env: | |
PAT_MKDOCS_INSIDERS: ${{ secrets.PAT_MKDOCS_INSIDERS }} | |
run: | | |
# echo "/home/linuxbrew/.linuxbrew/bin/brew" >> $GITHUB_PATH | |
make --environment-overrides docs-install-github-actions | |
- | |
name: Build Site | |
# if: ${{ github.ref != 'refs/heads/main' }} | |
env: | |
PAT_MKDOCS_INSIDERS: ${{ secrets.PAT_MKDOCS_INSIDERS }} | |
# run 'docs-build' twice because 'gen_files' doesn't let MkDocs | |
# pick up on the generated files in the first run | |
run: | | |
make --environment-overrides docs-build | |
make --environment-overrides docs-build | |
- | |
name: Deploy Site | |
if: ${{ github.ref == 'refs/heads/main' }} | |
env: | |
PAT_MKDOCS_INSIDERS: ${{ secrets.PAT_MKDOCS_INSIDERS }} | |
run: make --environment-overrides docs-deploy |