Permalink
Cannot retrieve contributors at this time
executable file
15 lines (14 sloc)
608 Bytes
|
cd out |
|
cp ../index.html . |
|
git init |
|
git config user.name "Travis CI" |
|
git config user.email "travis-auto-deploy@edunham.net" |
|
git add index.html |
|
git add README.md |
|
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}@github.com/edunham/rust-org-stats" master:gh-pages > /dev/null 2>&1 |
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.