mirror of
https://github.com/astral-sh/setup-uv.git
synced 2026-04-03 01:47:33 +00:00
14 lines
559 B
TypeScript
14 lines
559 B
TypeScript
export const TOOL_CACHE_NAME = "uv";
|
|
export const STATE_UV_PATH = "uv-path";
|
|
export const STATE_UV_VERSION = "uv-version";
|
|
export const VERSIONS_MANIFEST_URL =
|
|
"https://raw.githubusercontent.com/astral-sh/versions/main/v1/uv.ndjson";
|
|
|
|
/** GitHub Releases URL prefix for uv artifacts. */
|
|
export const GITHUB_RELEASES_PREFIX =
|
|
"https://github.com/astral-sh/uv/releases/download/";
|
|
|
|
/** Astral mirror URL prefix that fronts GitHub Releases for uv artifacts. */
|
|
export const ASTRAL_MIRROR_PREFIX =
|
|
"https://releases.astral.sh/github/uv/releases/download/";
|