-
Notifications
You must be signed in to change notification settings - Fork 19
33 lines (32 loc) · 913 Bytes
/
docs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Build & publish docs
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- uses: actions/cache@v3
with:
key: ${{ github.ref }}
path: .cache
- name: 'Install mkdocs-material and plugins'
run: |
python -m pip install mkdocs-material
python -m pip install -r ./docs/mkdocs-material-plugins.txt
- name: 'Build API pages'
uses: gradle/gradle-build-action@v2
with:
arguments: |
dokkaHtmlMultiModule
-Dorg.gradle.internal.repository.max.tentatives=5
-Dorg.gradle.internal.repository.initial.backoff=10000
- name: 'Build & deploy docs'
run: mkdocs gh-deploy --force