mirror of
https://github.com/google-github-actions/setup-gcloud.git
synced 2026-09-01 11:09:22 +00:00
* First pass of cleanup of old actions code * fixed primary CHANGELOG file from setup-gcloud shift * cleaning up old workflows * removing working-directory spec as it's no longer needed * Moar cleanup on the path to cleanup redemption * "it now builds and tests pass locally" * lint error cleanup * More path cleanup * addressing PR comments, more cleanup * missed two files in last update * Update README.md Co-authored-by: Averi Kitsch <akitsch@google.com>
14 lines
430 B
TypeScript
14 lines
430 B
TypeScript
/**
|
|
* Creates the gcloud SDK release URL for the specified arguments, verifying
|
|
* its existence.
|
|
*
|
|
* @param os The OS of the requested release.
|
|
* @param arch The system architecture of the requested release.
|
|
* @param version The version of the requested release.
|
|
* @returns The verified gcloud SDK release URL.
|
|
*/
|
|
export declare function getReleaseURL(
|
|
os: string,
|
|
arch: string,
|
|
version: string,
|
|
): Promise<string>;
|