aptly_publish_snapshot
Publish a Debian package snapshot to a specified distribution, making it accessible via the Aptly package repository. Input the snapshot name, distribution, and optional prefix to create the publication.
Instructions
Publish a snapshot to make it available for apt
Input Schema
Name | Required | Description | Default |
---|---|---|---|
distribution | Yes | Distribution name for the publication (e.g., stable, testing, unstable) | |
prefix | No | Optional prefix for the publication endpoint | |
snapshotName | Yes | Name of the snapshot to publish |
Input Schema (JSON Schema)
{
"properties": {
"distribution": {
"description": "Distribution name for the publication (e.g., stable, testing, unstable)",
"type": "string"
},
"prefix": {
"description": "Optional prefix for the publication endpoint",
"type": "string"
},
"snapshotName": {
"description": "Name of the snapshot to publish",
"type": "string"
}
},
"required": [
"snapshotName",
"distribution"
],
"type": "object"
}