We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 729c4b5 commit 279fb63Copy full SHA for 279fb63
.travis.yml
@@ -29,5 +29,7 @@ after_script:
29
npm --no-git-tag-version version $($(npm bin)/json -f package.json version)-prerelease.$(date +%s)
30
npm publish
31
# Publish to gh-pages as most recent committer
32
- GIT_AUTHOR_EMAIL=$(git log --pretty=format:"%ae" -n1) GIT_AUTHOR_NAME=$(git log --pretty=format:"%an" -n1) npm run --silent deploy -- -x -r https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git
+ git config --global user.email $(git log --pretty=format:"%ae" -n1)
33
+ git config --global user.name $(git log --pretty=format:"%an" -n1)
34
+ npm run --silent deploy -- -x -r https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git
35
fi
0 commit comments