forked from uber/AutoDispose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy_website.sh
executable file
·55 lines (42 loc) · 1.15 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
48
49
50
51
52
53
54
55
#!/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
if [ "$1" = "--local" ]; then local=true; fi
if ! [ $local ]; then
set -ex
REPO="[email protected]:uber/AutoDispose.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
# Fetch all tags
git fetch --all --tags --prune
# Checkout the last 1.x release
git checkout tags/1.4.0
# Generate the 1.x docs
./gradlew dokka
git checkout master
# Generate the API docs for 2.x
./gradlew dokka
fi
# Copy in special files that GitHub wants in the project root.
cp CHANGELOG.md docs/changelog.md
cp CONTRIBUTING.md docs/contributing.md
cp 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