octopus-deploy
Version:
Node scripts to package up applications, create releases, and deploy with Octopus Deploy. This package leverages the Octopus Deploy REST API in order to deploy from Windows and non-Windows machines.
14 lines (12 loc) • 345 B
JavaScript
const builder = yargs =>
yargs
.usage('Usage:\n $0 release <create|deploy> [options]')
.commandDir('./release-commands')
.demandCommand(1, 'You must specify a command and options')
.version(false)
module.exports = {
command: 'release',
describe: 'Create and optionally deploy a release',
builder,
handler: () => {}
}