]> jfr.im git - irc/freenode/web-7.0.git/blame_incremental - deploy.sh
Fix deploy.sh, I hope
[irc/freenode/web-7.0.git] / deploy.sh
... / ...
CommitLineData
1#!/bin/sh
2
3if [ ! -f .deploy-key ]; then exit; fi
4if [ -z "$TRAVIS_BRANCH" ]; then exit; fi
5
6BRANCH_DIR="$TRAVIS_BRANCH"
7
8if [ "$TRAVIS_PULL_REQUEST" != false ]; then
9 if [ "$TRAVIS_BRANCH" != master ]; then exit; fi
10
11 BRANCH_DIR="pull-$TRAVIS_PULL_REQUEST"
12fi
13
14export SSH_KEYFILE="$(readlink -f .deploy-key)"
15export GIT_SSH="$(readlink -f ssh.sh)"
16git clone -b gh-pages git@github.com:freenode/web-7.0.git .deploy || exit 1
17cd .deploy || exit 1
18git config user.name travis
19git config user.email travis@nowhere
20git rm -r "$BRANCH_DIR/*"
21mkdir -p "$BRANCH_DIR"
22cd "$BRANCH_DIR" || exit 1
23cp -r ../../out/* .
24git add -A
25git commit -m "travis: $TRAVIS_COMMIT"
26git push || exit 1