This repository has been archived by the owner on Oct 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 100
/
deploy.sh
executable file
·80 lines (50 loc) · 1.75 KB
/
deploy.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/bin/bash
set -e # Exit with nonzero exit code if anything fails
TARGET_BRANCH="gh-pages"
# Commits to other branches than master shouldn't be deployed
if [ "$TRAVIS_PULL_REQUEST" == "false" -a -z "$TRAVIS_TAG" -a "$TRAVIS_BRANCH" != "master" ]; then
echo "This is the build of a branch => Skipping deploy;"
exit 0
fi
if [ -z "$encrypted_af9c5a2dd85c_key" ]; then
echo "No encryption key for deploy provided => Skipping deploy;"
exit 0;
fi
# Save some useful information
REPO=`git config remote.origin.url`
[email protected]:jsettlers/settlers-nightlies.git
SHA=`git rev-parse --short=7 --verify HEAD`
cd settings
# Get the deploy key by using Travis's stored variables to decrypt deploy_key.enc
openssl aes-256-cbc -K $encrypted_af9c5a2dd85c_key -iv $encrypted_af9c5a2dd85c_iv -in deploy_key.enc -out deploy_key -d
chmod 600 deploy_key
eval `ssh-agent -s`
ssh-add deploy_key
cd ..
# Clone the existing gh-pages for this repo into gh-pages/
rm -rf gh-pages
git clone $SSH_REPO --branch $TARGET_BRANCH --single-branch gh-pages
# Create the folder name
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
FOLDER="pullRequests/$TRAVIS_PULL_REQUEST"
elif [ -n "$TRAVIS_TAG" ]; then
FOLDER="tags/$TRAVIS_TAG"
elif [ "$TRAVIS_BRANCH" == "master" ]; then
FOLDER="master"
else
FOLDER="branch/$TRAVIS_BRANCH"
fi
DATE=`date +%Y-%m-%d_%H-%M-%S`
FOLDER="gh-pages/$FOLDER/"
mkdir -v -p "$FOLDER"
# Copy the release files into the folder
cp -R release/ "$FOLDER/${DATE}__$SHA/"
cd gh-pages
# Set git config
git config user.name "Travis CI"
git config user.email "travis@jsettlers"
# Commit the "changes", i.e. the new version.
git add .
git commit -m "Deploy to GitHub Pages: ${SHA}"
# Now that we're all set up, we can push.
git push $SSH_REPO $TARGET_BRANCH