forked from mirrors/gecko-dev
MozReview-Commit-ID: Grf1bKIx2iT --HG-- extra : rebase_source : 8013a66263a3a014944b0815ff9bc7d8ac0ad9a3
18 lines
377 B
Bash
Executable file
18 lines
377 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -o errexit -o nounset
|
|
|
|
rev=$(git rev-parse --short HEAD)
|
|
|
|
cd target/doc
|
|
|
|
git init
|
|
git config user.email 'FlashCat@users.noreply.github.com'
|
|
git config user.name 'FlashCat'
|
|
git remote add upstream "https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git"
|
|
|
|
touch .
|
|
|
|
git add -A .
|
|
git commit -qm "rebuild pages at ${rev}"
|
|
git push -q upstream HEAD:gh-pages --force
|