2023-12-01 14:17:45 +00:00
|
|
|
# Fluffy
|
2024-01-27 13:34:11 +00:00
|
|
|
# Copyright (c) 2023-2024 Status Research & Development GmbH
|
2023-12-01 14:17:45 +00:00
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
|
|
|
name: Fluffy docs CI
|
2023-10-23 13:29:54 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
paths:
|
|
|
|
- '.github/workflows/fluffy_docs.yml'
|
|
|
|
- 'fluffy/docs/**'
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: 3.x
|
|
|
|
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
|
2024-01-27 13:34:11 +00:00
|
|
|
- uses: actions/cache@v4
|
2023-10-23 13:29:54 +00:00
|
|
|
with:
|
|
|
|
key: mkdocs-material-${{ env.cache_id }}
|
|
|
|
path: .cache
|
|
|
|
restore-keys: |
|
|
|
|
mkdocs-material-
|
|
|
|
- run: pip install mkdocs-material
|
|
|
|
- name: Run mkdocs github deploy
|
|
|
|
working-directory: ./fluffy/docs/the_fluffy_book/
|
|
|
|
run: |
|
|
|
|
mkdocs gh-deploy --force
|