forked from ajalt/mordant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy_website.sh
executable file
·40 lines (31 loc) · 927 Bytes
/
deploy_website.sh
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
34
35
36
37
38
39
40
#!/usr/bin/env 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 API docs
./gradlew dokkaHtml
# Copy the changelog into the site, omitting the unreleased section
cat CHANGELOG.md \
| grep -v '^## Unreleased' \
| sed '/^## /,$!d' \
> docs/changelog.md
# Add the jinja frontmatter to the index
cat > docs/index.md <<- EOM
---
hide:
- toc # Hide table of contents
---
EOM
# Copy the README into the index, omitting the license and fixing hrefs
cat README.md \
| sed '/## License/Q' \
| sed 's!https://ajalt.github.io/mordant/!/!g' \
| sed 's!docs/img!img!g' \
>> docs/index.md
# Build and deploy the new site to github pages
mkdocs gh-deploy
# Remove the file copies
rm docs/index.md docs/changelog.md