rust-book-cn/deploy.sh
2016-11-20 12:30:50 -05:00

22 lines
414 B
Bash

#!/bin/bash
set -o errexit -o nounset
rev=$(git rev-parse --short HEAD)
cd book
git init
git config user.name "Steve Klabnik"
git config user.email "steve@steveklabnik.com"
git remote add upstream "https://$GH_TOKEN@github.com/rust-lang/book.git"
git fetch upstream
git reset upstream/gh-pages
touch .
git add -A .
git commit -m "rebuild pages at ${rev}"
git push -q upstream HEAD:gh-pages > /dev/null 2>&1