CircleCI 2.0
Environment variables
The Authentication environment variables can be configured in CircleCi Project Settings..
Alternatively, the default NPM_TOKEN
and GH_TOKEN
can be easily setup with semantic-release-cli.
Multiple Node jobs configuration
.circleci/config.yml
configuration for multiple Node jobs
.circleci/config.yml
configuration for multiple Node jobsThis example is a minimal configuration for semantic-release with a build running Node 6 and 8. See CircleCI documentation for additional configuration options.
This example create the workflows test_node_4
, test_node_6
, test_node_8
and release
. The release workflows will run semantic-release
only after the all the test_node_*
are successful.
package.json
configuration for multiple Node jobs
package.json
configuration for multiple Node jobsA package.json
is required only for local semantic-release installation.
Last updated