We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb5e97d commit ee5aacaCopy full SHA for ee5aaca
.travis.yml
@@ -29,7 +29,5 @@ 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 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
+ 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
35
fi
0 commit comments