list_releases_for_project
Retrieve all releases for a specific project in Octopus Deploy to track deployment history, monitor version changes, and manage release pipelines.
Instructions
List releases for a specific project
This tool lists all releases for a given project in a space. The space name and project ID are required. Optionally provide skip, take, and searchByVersion parameters.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | ||
searchByVersion | No | Search releases by version string | |
skip | No | ||
spaceName | Yes | ||
take | No |
Input Schema (JSON Schema)
{
"properties": {
"projectId": {
"type": "string"
},
"searchByVersion": {
"description": "Search releases by version string",
"type": "string"
},
"skip": {
"type": "number"
},
"spaceName": {
"type": "string"
},
"take": {
"type": "number"
}
},
"required": [
"spaceName",
"projectId"
],
"type": "object"
}