listBuildArtifacts
Retrieve all artifacts from a Jenkins build job, specifying either a particular build number or the most recent build.
Instructions
List all artifacts from a specific build or the last build
Input Schema
Name | Required | Description | Default |
---|---|---|---|
buildNumber | No | Build number (optional, defaults to last build) | |
jobFullName | Yes | Full path of the Jenkins job |
Input Schema (JSON Schema)
{
"properties": {
"buildNumber": {
"description": "Build number (optional, defaults to last build)",
"type": "integer"
},
"jobFullName": {
"description": "Full path of the Jenkins job",
"type": "string"
}
},
"required": [
"jobFullName"
],
"type": "object"
}