We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7e82c8 commit 49d4f91Copy full SHA for 49d4f91
.github/workflows/docs.yml
@@ -17,15 +17,19 @@ jobs:
17
- uses: actions/setup-python@v5
18
with:
19
python-version: 3.x
20
+ - name: Setup Java
21
+ uses: actions/setup-java@v1
22
+ with:
23
+ java-version: 17
24
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- - run: |
- ./gradlew dokkaHtmlMultiModule
- mv build/dokka/htmlMultiModule docs/api
25
- uses: actions/cache@v4
26
27
key: mkdocs-material-${{ env.cache_id }}
28
path: .cache
29
restore-keys: |
30
mkdocs-material-
31
+ - run: |
32
+ ./gradlew dokkaHtmlMultiModule
33
+ mv build/dokka/htmlMultiModule docs/api
34
- run: pip install mkdocs-material
35
- run: mkdocs gh-deploy --force
0 commit comments