Last active
May 30, 2018 19:54
-
-
Save constgen/17dcb30087a2fb39e2edf6739de4a3a5 to your computer and use it in GitHub Desktop.
Travis GitHub release
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: node_js | |
node_js: | |
- "8.11" | |
install: | |
- npm install | |
cache: | |
directories: | |
- node_modules | |
script: | |
- npm test | |
notifications: | |
email: | |
on_pull_requests: false | |
on_success: change | |
on_failure: change | |
deploy: | |
provider: releases | |
api_key: "$GITHUB_AUTH_TOKEN" | |
file_glob: true | |
file: "dist/*" | |
overwrite: true | |
skip_cleanup: true | |
on: | |
tags: true | |
branch: master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment