You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
319 B
Bash
12 lines
319 B
Bash
#!/usr/bin/env bash
|
|
set -e # halt script on error
|
|
|
|
echo "Get ready, we're pushing to gh-pages!"
|
|
cd dist
|
|
git init
|
|
git config user.name "Travis-CI"
|
|
git config user.email "travis-ci@danielfdsilva.com"
|
|
git add .
|
|
git commit -m "CI deploy to gh-pages"
|
|
git push --force --quiet "https://${GH_TOKEN}@${GH_REF}" master:gh-pages
|