UNPKG

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.

11 lines (7 loc) 183 B
'use strict' const client = require('../octopus-client') const find = async id => { const url = `/deploymentProcesses/${id}` return client.get(url) } module.exports = { find }