From a4f385a2bdc32f10bf86bd79c4f149531de722ee Mon Sep 17 00:00:00 2001 From: Pat Cavit Date: Fri, 24 Mar 2017 16:00:41 -0700 Subject: [PATCH] chore: gh-pages needs git values set --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 7e2e6f5c..7acbb6a2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -47,6 +47,10 @@ after_success: # Generate docs npm run gendocs + # Set up git env + git config --global user.email "$GH_USER_EMAIL" + git config --global user.name "$GH_USER_NAME" + # Commit docs to gh-pages branch # Using --add to ensure that archived versions aren't lost # Using --repo to force it to go over SSH so the saved keys are used (tschaub/gh-pages#160)