mkdocs-material/.github/workflows/documentation.yml

98 lines
3.3 KiB
YAML
Raw Normal View History

2023-01-02 13:08:58 +03:00
# Copyright (c) 2016-2023 Martin Donath <martin.donath@squidfunk.com>
2020-11-22 14:01:43 +03:00
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
name: documentation
on:
push:
branches:
- master
env:
PYTHON_VERSION: 3.x
permissions:
contents: write
2020-11-22 14:01:43 +03:00
jobs:
documentation:
name: Build documentation
runs-on: ubuntu-latest
steps:
- name: Checkout repository
2023-09-20 01:11:58 +03:00
uses: actions/checkout@v4
2022-06-24 15:59:36 +03:00
with:
fetch-depth: 0
2020-11-22 14:01:43 +03:00
2020-11-22 14:04:31 +03:00
- name: Set up Python runtime
uses: actions/setup-python@v4
2020-11-22 14:01:43 +03:00
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Set the date environmental variable
run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
2022-06-24 15:56:33 +03:00
- name: Set up build cache
uses: actions/cache@v3
id: cache
with:
key: mkdocs-material-${{ env.cache_id }}
2022-06-29 09:07:02 +03:00
path: .cache
2023-05-01 00:46:03 +03:00
restore-keys: |
mkdocs-material-
2022-06-24 15:56:33 +03:00
2023-01-21 19:08:15 +03:00
- name: Install dependencies
run: sudo apt-get install pngquant
2020-11-22 14:01:43 +03:00
- name: Install Python dependencies
2021-06-15 11:55:13 +03:00
run: |
2022-06-24 15:49:47 +03:00
pip install \
"cairosvg>=2.5" \
2022-09-19 22:24:50 +03:00
"mkdocs-git-committers-plugin-2>=1.1.1" \
2022-06-24 15:56:33 +03:00
"mkdocs-git-revision-date-localized-plugin>=1.0" \
2022-06-24 15:51:20 +03:00
"mkdocs-minify-plugin>=0.3" \
2022-10-03 20:34:55 +03:00
"mkdocs-rss-plugin>=1.2" \
"mkdocs-redirects>=1.0" \
2023-08-31 15:28:29 +03:00
"lxml" \
"pillow<10"
2021-06-15 11:55:13 +03:00
2021-06-15 12:35:14 +03:00
- name: Install Insiders build
if: github.event.repository.fork == false
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
2020-11-22 14:01:43 +03:00
run: |
2022-07-20 12:12:33 +03:00
# Warning: please don't use this method when installing Insiders from
# CI! We have to do it this way in order to allow for overrides on our
# own documentation, but you should stick to the method we recommend
# in the publishing guide see https://bit.ly/3zjdJtw
2021-06-15 12:36:35 +03:00
git clone --depth 1 https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git
2021-07-24 18:28:34 +03:00
pip install -e mkdocs-material-insiders
2022-11-04 09:27:51 +03:00
cp mkdocs-material-insiders/mkdocs.yml mkdocs.yml
rm -rf material
cp -r mkdocs-material-insiders/material material
2020-11-22 14:01:43 +03:00
- name: Deploy documentation
env:
2022-06-24 15:59:36 +03:00
GH_TOKEN: ${{ secrets.GH_TOKEN }}
2020-11-22 14:01:43 +03:00
GOOGLE_ANALYTICS_KEY: ${{ secrets.GOOGLE_ANALYTICS_KEY }}
run: |
mkdocs gh-deploy --force
mkdocs --version