mirror of
https://github.com/MichaelCurrin/mkdocs-quickstart.git
synced 2026-03-28 17:42:47 +01:00
37 lines
797 B
YAML
37 lines
797 B
YAML
name: Deploy Docs
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build-deploy:
|
|
name: Build and deploy docs
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout 🛎️
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up Python 3 ⚙️ 🐍
|
|
uses: actions/setup-python@v2
|
|
|
|
- name: Cache dependencies 💾
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/.cache/pip
|
|
key: ${{ runner.os }}-pip-${{ hashFiles('docs/requirements.txt') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-pip-
|
|
${{ runner.os }}-
|
|
|
|
- name: Install dependencies 🔧
|
|
working-directory: docs
|
|
run: make install
|
|
|
|
- name: Build and deploy to GitHub Pages 🏗️ 🚀
|
|
working-directory: docs
|
|
run: make deploy
|