task.mk/.github/workflows/docs.yml

53 lines
1.3 KiB
YAML
Raw Normal View History

2022-09-25 17:08:06 -05:00
name: GitHub Pages
2022-09-18 10:11:24 -05:00
on:
push:
tags: ["v*.*.*"]
workflow_dispatch:
2022-09-25 17:08:06 -05:00
2022-09-18 10:11:24 -05:00
jobs:
deploy:
2022-09-25 17:08:06 -05:00
runs-on: ubuntu-22.04
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
2022-09-18 10:11:24 -05:00
steps:
2022-09-25 17:08:06 -05:00
- uses: actions/checkout@v3
2022-09-18 15:04:38 -05:00
with:
fetch-depth: 0
2022-09-25 17:08:06 -05:00
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: "3.9"
2022-09-25 17:08:06 -05:00
- name: Upgrade pip
run: |
# install pip=>20.1 to use "pip cache dir"
python3 -m pip install --upgrade pip
- name: Get pip cache dir
id: pip-cache
run: echo "::set-output name=dir::$(pip cache dir)"
- name: Cache dependencies
uses: actions/cache@v2
2022-09-18 10:11:24 -05:00
with:
2022-09-25 17:08:06 -05:00
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-docs.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: python3 -m pip install -r ./requirements-docs.txt
2022-09-18 10:11:24 -05:00
2022-09-25 17:08:06 -05:00
- run: mkdocs build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site