mirror of
https://github.com/MichaelCurrin/mkdocs-quickstart.git
synced 2026-03-28 17:42:47 +01:00
24 lines
407 B
YAML
24 lines
407 B
YAML
name: Deploy docs
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build-deploy:
|
|
name: Build and deploy to GH Pages
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python 3.x
|
|
uses: actions/setup-python@v2
|
|
|
|
- name: Install dependencies
|
|
run: cd docs && make install
|
|
|
|
- name: Build and deploy
|
|
run: cd docs && make deploy
|