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

119 lines
3.9 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
2023-09-22 19:53:41 +03:00
id-token: write
2023-09-22 20:02:45 +03:00
pages: 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
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
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
2022-06-24 15:56:33 +03:00
- name: Set up build cache
2023-09-22 19:30:39 +03:00
uses: actions/cache/restore@v3
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
2023-11-23 14:13:20 +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
uses: actions/upload-pages-artifact@v2
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-09-22 21:51:23 +03:00
uses: actions/deploy-pages@v2
2023-09-22 19:46:51 +03:00
2023-09-22 19:30:39 +03:00
- name: Save build cache
uses: actions/cache/save@v3
with:
key: mkdocs-material-${{ hashfiles('.cache/**') }}
path: .cache