forked from slackhq/circuit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy_website.sh
executable file
·47 lines (36 loc) · 1.1 KB
/
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
41
42
43
44
45
46
47
#!/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 mdx_truly_sane_lists
if [[ "$1" = "--local" ]]; then local=true; fi
if ! [[ ${local} ]]; then
set -ex
export GIT_CLONE_PROTECTION_ACTIVE=false
REPO="[email protected]:slackhq/circuit.git"
DIR=temp-clone
# Delete any existing temporary website clone
rm -rf ${DIR}
# Clone the current repo into temp folder
git clone ${REPO} ${DIR}
# Move working directory into temp folder
cd ${DIR}
# Generate the API docs
./gradlew dokkaHtmlMultiModule --no-configuration-cache
fi
# Copy in special files that GitHub wants in the project root.
cp CHANGELOG.md docs/changelog.md
cp .github/CONTRIBUTING.md docs/contributing.md
cp .github/CODE_OF_CONDUCT.md docs/code-of-conduct.md
# Build the site and push the new files up to GitHub
if ! [[ ${local} ]]; then
mkdocs gh-deploy
else
mkdocs serve
fi
# Delete our temp folder
if ! [[ ${local} ]]; then
cd ..
rm -rf ${DIR}
fi