2024-01-06 05:27:06 +03:00
|
|
|
|
# Copyright (c) 2016-2024 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
|
|
|
|
|
|
2022-04-08 16:44:43 +03:00
|
|
|
|
permissions:
|
2022-04-08 17:14:50 +03:00
|
|
|
|
contents: write
|
2023-09-22 19:53:41 +03:00
|
|
|
|
id-token: write
|
2023-09-22 20:02:45 +03:00
|
|
|
|
pages: write
|
2022-04-08 16:44:43 +03:00
|
|
|
|
|
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
|
2023-09-22 20:19:42 +03:00
|
|
|
|
sparse-checkout: |
|
|
|
|
|
docs
|
|
|
|
|
includes
|
|
|
|
|
material/overrides
|
2023-09-22 20:32:29 +03:00
|
|
|
|
src/templates/partials/languages
|
2020-11-22 14:01:43 +03:00
|
|
|
|
|
2020-11-22 14:04:31 +03:00
|
|
|
|
- name: Set up Python runtime
|
2023-12-11 08:00:02 +03:00
|
|
|
|
uses: actions/setup-python@v5
|
2020-11-22 14:01:43 +03:00
|
|
|
|
with:
|
|
|
|
|
python-version: ${{ env.PYTHON_VERSION }}
|
2023-09-22 19:30:39 +03:00
|
|
|
|
cache: pip
|
2023-09-22 20:47:48 +03:00
|
|
|
|
cache-dependency-path: |
|
|
|
|
|
pyproject.toml
|
|
|
|
|
requirements.txt
|
2023-05-03 08:55:45 +03:00
|
|
|
|
|
2022-06-24 15:56:33 +03:00
|
|
|
|
- name: Set up build cache
|
2024-01-22 07:36:29 +03:00
|
|
|
|
uses: actions/cache/restore@v4
|
2022-06-24 15:56:33 +03:00
|
|
|
|
with:
|
2023-09-22 19:46:51 +03:00
|
|
|
|
key: mkdocs-material-${{ hashfiles('.cache/**') }}
|
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: |
|
2023-09-22 19:30:39 +03:00
|
|
|
|
pip install mkdocs-material
|
|
|
|
|
pip install mkdocs-material[recommended,git,imaging]
|
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
|
2024-01-23 06:05:42 +03:00
|
|
|
|
# echo 'extra_javascript: [${{ vars.CHAT_CLIENT_URL }}]' >> mkdocs.yml
|
2022-11-04 09:27:51 +03:00
|
|
|
|
rm -rf material
|
|
|
|
|
cp -r mkdocs-material-insiders/material material
|
2020-11-22 14:01:43 +03:00
|
|
|
|
|
2023-09-22 19:46:51 +03:00
|
|
|
|
- name: Build documentation
|
2020-11-22 14:01:43 +03:00
|
|
|
|
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: |
|
2023-09-22 19:46:51 +03:00
|
|
|
|
mkdocs build --clean
|
2020-11-22 14:01:43 +03:00
|
|
|
|
mkdocs --version
|
2023-09-22 19:30:39 +03:00
|
|
|
|
|
2023-09-22 19:58:47 +03:00
|
|
|
|
- name: Adjust permissions
|
|
|
|
|
run: |
|
|
|
|
|
chmod -c -R +rX site/ | while read line; do
|
|
|
|
|
echo "::warning title=Invalid file permissions automatically fixed::$line"
|
|
|
|
|
done
|
|
|
|
|
|
2023-09-22 19:46:51 +03:00
|
|
|
|
- name: Upload to GitHub Pages
|
2023-12-25 07:24:18 +03:00
|
|
|
|
uses: actions/upload-pages-artifact@v3
|
2023-09-22 19:50:29 +03:00
|
|
|
|
with:
|
|
|
|
|
path: site
|
2023-09-22 19:46:51 +03:00
|
|
|
|
|
|
|
|
|
- name: Deploy to GitHub Pages
|
2023-12-25 07:24:15 +03:00
|
|
|
|
uses: actions/deploy-pages@v4
|
2023-09-22 19:46:51 +03:00
|
|
|
|
|
2023-09-22 19:30:39 +03:00
|
|
|
|
- name: Save build cache
|
2024-01-22 07:36:29 +03:00
|
|
|
|
uses: actions/cache/save@v4
|
2023-09-22 19:30:39 +03:00
|
|
|
|
with:
|
|
|
|
|
key: mkdocs-material-${{ hashfiles('.cache/**') }}
|
|
|
|
|
path: .cache
|