5
0
mirror of https://github.com/astral-sh/setup-uv.git synced 2025-12-23 11:01:03 +00:00

Add input python-version (#174)

This commit is contained in:
Kevin Stillhammer
2024-11-28 21:41:37 +01:00
committed by GitHub
parent 420915557e
commit ee4fa33003
7 changed files with 44 additions and 8 deletions

View File

@@ -2,6 +2,7 @@ import * as core from "@actions/core";
import path from "node:path";
export const version = core.getInput("version");
export const pythonVersion = core.getInput("python-version");
export const checkSum = core.getInput("checksum");
export const enableCache = core.getInput("enable-cache") === "true";
export const cacheSuffix = core.getInput("cache-suffix") || "";