Skip to content

Commit

Permalink
rebuild gh-pages per PR
Browse files Browse the repository at this point in the history
  • Loading branch information
devoncarew committed Oct 28, 2015
1 parent 2918580 commit 048535c
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 30 deletions.
7 changes: 7 additions & 0 deletions .travis.yml
@@ -1,3 +1,10 @@
language: dart
script: dart -c tool/grind.dart
sudo: false

after_success:
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && bash tool/ghpages.sh

env:
global:
- secure: LImP9GVVlazcPAwId9YewKxtW7fJKYex6Nt02uUzXKSY6Dx7Rn5jXp5afUwnSYs1zMJIb3PJUnzRkWobRF7xShZhAw41D1yNRQrTgoM3OaPCCPUWRzv9M5rBdiPIbw3iP5kFwOYTLjeApX3d+OHUw6jUyPu0fCyvootVPIi+jYE=
21 changes: 21 additions & 0 deletions tool/ghpages.sh
@@ -0,0 +1,21 @@
#!/bin/bash

set -o errexit -o nounset

rev=$(git rev-parse --short HEAD)

cd doc/api

git init
git config user.name "Devon Carew"
git config user.email "devoncarew@google.com"

git remote add upstream "https://$GH_TOKEN@github.com/google/grinder.dart.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
30 changes: 0 additions & 30 deletions tool/travis.sh

This file was deleted.

0 comments on commit 048535c

Please sign in to comment.