1.0.0 • Published 8 years ago

circleci-env v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

circleci-env Build Status

Configure CircleCI with an environment variable

Install

$ npm install --save circleci-env

Usage

var env = require('circleci-env')

env({
  username: 'bendrucker',
  project: 'circleci-aws',
  circle_token: token,
  name: 'FOO',
  value: 'BAR'
})
.then(console.log)

// #=> {name: 'FOO', value: 'xxxxR'}

API

env(data) -> promise

Set a new environment variable using the provided data.

data

Required
Type: object

An object that always must contain username, project, circle_token, plus name and value for the key and value to be added.

License

MIT © Ben Drucker