setup-gcloud/setupGcloudSDK/dist/format-url.d.ts
T Hernandez 38fab8887c
feat: cleanup old actions(#331)
* 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>
2021-07-23 13:24:52 -05:00

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>;