tstor/.github/workflows/mkdocs.yml

28 lines
567 B
YAML
Raw Normal View History

2021-10-07 17:27:19 +00:00
name: mkdocs
on:
push:
2023-10-08 16:46:03 +00:00
branches:
- master
tags:
2023-10-08 16:46:03 +00:00
- "v*"
jobs:
mkdocs:
runs-on: ubuntu-latest
steps:
2023-10-08 16:46:03 +00:00
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
2023-10-08 16:46:03 +00:00
python-version: 3.x
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
2023-10-08 16:46:03 +00:00
- uses: actions/cache@v3
with:
2023-10-08 16:46:03 +00:00
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
2023-10-08 16:46:03 +00:00
mkdocs-material-
- run: pip install mkdocs-material
- run: mkdocs gh-deploy --force