1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#!/bin/bash
set -e # exit with nonzero exit code if anything fails
# https://gist.github.com/domenic/ec8b0fc8ab45f39403dd
# go to the out directory and create a *new* Git repo
cd out
find . -mindepth 2 -type f -print -exec mv {} . \;
git init
# inside this git repo we'll pretend to be a new user
git config user.name "Travis CI"
git config user.email "test@test.com"
# The first and only commit to this new Git repo contains all the
# files present with the commit message "Deploy to GitHub Pages".
git add .
git commit -m "Deploy to GitHub Pages"
# Force push from the current repo's master branch to the remote
# repo's gh-pages branch. (All previous history on the gh-pages branch
# will be lost, since we are overwriting it.) We redirect any output to
# /dev/null to hide any sensitive credential data that might otherwise be exposed.
git push --force --quiet "https://${GH_TOKEN}@${GH_REF}" master:gh-pages > /dev/null 2>&1
|