liara_get_release
Retrieve detailed information about a specific application release on the Liara cloud platform by providing the app name and release ID.
Instructions
Get details of a specific release
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appName | Yes | The name of the app | |
| releaseID | Yes | The release ID |
Implementation Reference
- src/services/deployment.ts:80-102 (handler)Executes the core logic for retrieving details of a specific app release via the Liara API. This is the implementation of the 'liara_get_release' tool handler.export async function getRelease( client: LiaraClient, appName: string, releaseID: string ): Promise<{ _id: string; releaseID: string; sourceID: string; status: string; createdAt: string; envVars?: Array<{ key: string; value: string }>; }> { validateAppName(appName); validateRequired(releaseID, 'Release ID'); return await client.get<{ _id: string; releaseID: string; sourceID: string; status: string; createdAt: string; envVars?: Array<{ key: string; value: string }>; }>(`/v2/projects/${appName}/releases/${releaseID}`); }