You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
435 B
17 lines
435 B
4 months ago
|
#!/bin/bash
|
||
|
|
||
|
# The website is built using MkDocs with the Material theme.
|
||
|
# https://squidfunk.github.io/mkdocs-material/
|
||
|
# It requires Python to run.
|
||
|
# Install the packages with the following command:
|
||
|
# pip install mkdocs mkdocs-material
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
# Generate the API docs
|
||
|
./gradlew okio:dokkaHtml
|
||
|
|
||
|
# Copy in special files that GitHub wants in the project root.
|
||
|
cp CHANGELOG.md docs/changelog.md
|
||
|
cp CONTRIBUTING.md docs/contributing.md
|