-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathdeploy-docs.sh
More file actions
executable file
·72 lines (51 loc) · 1.68 KB
/
deploy-docs.sh
File metadata and controls
executable file
·72 lines (51 loc) · 1.68 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/bin/bash
# Based on domenic's tutorial: https://gist.github.com/domenic/ec8b0fc8ab45f39403dd
set -euxo pipefail # Exit with nonzero exit code if anything fails
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
SOURCE_BRANCH="main"
TARGET_BRANCH="gh-pages"
git checkout $SOURCE_BRANCH
cd $DIR/..
# Install React Native Paper dependencies for examples
yarn
cd docs
# Save some useful information
REPO=`git config remote.origin.url`
SSH_REPO=${REPO/https:\/\/github.com\//git@github.com:}
SHA=`git rev-parse --verify HEAD`
# Clone the existing gh-pages for this repo into dist/
# Create a new empty branch if gh-pages doesn't exist yet (should only happen on first deploy)
git clone $REPO dist
cd dist
git checkout $TARGET_BRANCH || git checkout --orphan $TARGET_BRANCH
cd ..
# Clean existing dist/ contents
rm -rf dist/**/* || :
rm -f dist/*.{html,css,js,json,map,xml} || :
rmdir dist/* || :
# Run our build script.
yarn
yarn build
# Move the built docs to cloned `gh-pages` directory
cp -R build/. dist
rm -rf build
# Change directory to the one using `gh-pages` branch
cd dist
# Configure git.
git config user.name "$COMMIT_AUTHOR_NAME"
git config user.email "$COMMIT_AUTHOR_EMAIL"
git add -A .
# If there are no changes to the compiled dist (e.g. this is a README update) then just bail.
if git diff --cached --quiet; then
echo "No changes to the output on this push; exiting."
exit 0
fi
# Commit the "changes", i.e. the new version.
# The delta will show diffs between new and old versions.
git commit -m "Deploy to GitHub Pages: ${SHA}"
# Now that we're all set up, we can push.
git push $SSH_REPO $TARGET_BRANCH
# Change back to original branch
cd ..
git checkout $SOURCE_BRANCH
yarn