This repository has been archived by the owner on Dec 15, 2018. It is now read-only.
Releases: semantic-release/travis-deploy-once
Releases · semantic-release/travis-deploy-once
v2.0.3
v2.0.2
v2.0.1
v2.0.0
2.0.0 (2017-08-19)
Bug Fixes
- allow to partially pass in env (9342f79)
- log error when exiting on node < 8 (85ebe13)
- remove timout from library and let Travis kill the build if it takes too long Closes #5 (3b42d7f)
- use all jobs (e.g. matrix) for job leader election, not just "node_js" (9dadfd1)
- warn when github user has not authed travis Closes #3 (db355c9)
Chores
- require node 8 (16695c1)
Code Refactoring
- make entire env passable as an argument (1e3ab6b)
Features
- elect build leader by highest node version (bd850b1)
- gracefully handle node < 8 (2bcdee6)
- return early if there is no build matrix in the first place (3309aaf)
BREAKING CHANGES
- The first job in the build matrix is no longer
automatically elected to be the build leader.
Instead the build job with the highest node version is selected.
If you want to control which job is the build leader set the
environment variableBUILD_LEADER_ID
. - token option now named GH_TOKEN
before
travisDeployOnce({token: 'asdf'})
after
travisDeployOnce({GH_TOKEN: 'asdf'})
- this package requires node 8