-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
92 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
#!/bin/bash | ||
# Automatically deploy on gh-pages | ||
|
||
set -e | ||
|
||
SOURCE_BRANCH="master" | ||
TARGET_BRANCH="gh-pages" | ||
|
||
# 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 out/ | ||
( | ||
git clone "$REPO" out | ||
cd out | ||
git checkout $TARGET_BRANCH | ||
) | ||
|
||
# Remove the current doc for master | ||
rm -rf out/master/ || exit 0 | ||
|
||
# Make the doc for master | ||
mkdir out/master/ | ||
cp util/gh-pages/index.html out/master | ||
./util/export.py out/master/lints.json | ||
|
||
# Save the doc for the current tag and point current/ to it | ||
if [ -n "$TRAVIS_TAG" ]; then | ||
cp -r out/master "out/$TRAVIS_TAG" | ||
rm -f out/current | ||
ln -s "$TRAVIS_TAG" out/current | ||
fi | ||
|
||
# Pull requests and commits to other branches shouldn't try to deploy, just build to verify | ||
if [ "$TRAVIS_PULL_REQUEST" != "false" ] || [ "$TRAVIS_BRANCH" != "$SOURCE_BRANCH" ]; then | ||
echo "Generated, won't push" | ||
exit 0 | ||
fi | ||
|
||
# Now let's go have some fun with the cloned repo | ||
cd out | ||
git config user.name "Travis CI" | ||
git config user.email "travis@ci.invalid" | ||
|
||
if [ -z "$(git diff --exit-code)" ]; then | ||
echo "No changes to the output on this push; exiting." | ||
exit 0 | ||
fi | ||
|
||
git add . | ||
git commit -m "Automatic deploy to GitHub Pages: ${SHA}" | ||
|
||
# Get the deploy key by using Travis's stored variables to decrypt deploy_key.enc | ||
ENCRYPTED_KEY_VAR="encrypted_${ENCRYPTION_LABEL}_key" | ||
ENCRYPTED_IV_VAR="encrypted_${ENCRYPTION_LABEL}_iv" | ||
ENCRYPTED_KEY=${!ENCRYPTED_KEY_VAR} | ||
ENCRYPTED_IV=${!ENCRYPTED_IV_VAR} | ||
openssl aes-256-cbc -K "$ENCRYPTED_KEY" -iv "$ENCRYPTED_IV" -in deploy_key.enc -out deploy_key -d | ||
chmod 600 deploy_key | ||
eval $(ssh-agent -s) | ||
ssh-add deploy_key | ||
|
||
# Now that we're all set up, we can push. | ||
git push "$SSH_REPO" "$TARGET_BRANCH" |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# Used by Travis to be able to push: | ||
/.github/deploy_key | ||
out | ||
|
||
# Compiled files | ||
*.o | ||
*.so | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters