From 22695119d769bdb6f7032ad67b9bca0ef8c4a174 Mon Sep 17 00:00:00 2001 From: Kevin Stillhammer Date: Fri, 21 Mar 2025 13:44:23 +0100 Subject: [PATCH] Add uv-path and uvx-path output (#341) Closes: #338 --- .github/workflows/test.yml | 5 +++++ action.yml | 4 ++++ dist/setup/index.js | 6 ++++-- src/setup-uv.ts | 6 ++++-- 4 files changed, 17 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 60c54d7..d176c9e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -41,10 +41,15 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install latest version + id: setup-uv uses: ./ - run: uv sync working-directory: __tests__/fixtures/uv-project shell: bash + - name: Check uv-path is set + run: ${{ steps.setup-uv.outputs.uv-path }} --version + - name: Check uvx-path is set + run: ${{ steps.setup-uv.outputs.uvx-path }} --version test-specific-version: runs-on: ubuntu-latest diff --git a/action.yml b/action.yml index 3327f72..a56f0d1 100644 --- a/action.yml +++ b/action.yml @@ -57,6 +57,10 @@ inputs: outputs: uv-version: description: "The installed uv version. Useful when using latest." + uv-path: + description: "The path to the installed uv binary." + uvx-path: + description: "The path to the installed uvx binary." cache-hit: description: "A boolean value to indicate a cache entry was found" runs: diff --git a/dist/setup/index.js b/dist/setup/index.js index 129bedd..e0b6ed9 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -123418,7 +123418,7 @@ async function run() { throw new Error(`Unsupported architecture: ${process.arch}`); } const setupResult = await setupUv(platform, arch, inputs_1.checkSum, inputs_1.githubToken); - addUvToPath(setupResult.uvDir); + addUvToPathAndOutput(setupResult.uvDir); addToolBinToPath(); setToolDir(); await setupPython(); @@ -123480,7 +123480,9 @@ async function determineVersion() { const versionFromConfigFile = (0, pyproject_1.getUvVersionFromConfigFile)(versionFile); return await (0, download_version_1.resolveVersion)(versionFromConfigFile || "latest", inputs_1.githubToken); } -function addUvToPath(cachedPath) { +function addUvToPathAndOutput(cachedPath) { + core.setOutput("uv-path", `${cachedPath}${path.sep}uv`); + core.setOutput("uvx-path", `${cachedPath}${path.sep}uvx`); core.addPath(cachedPath); core.info(`Added ${cachedPath} to the path`); } diff --git a/src/setup-uv.ts b/src/setup-uv.ts index 52f72f0..ee7e77c 100644 --- a/src/setup-uv.ts +++ b/src/setup-uv.ts @@ -44,7 +44,7 @@ async function run(): Promise { } const setupResult = await setupUv(platform, arch, checkSum, githubToken); - addUvToPath(setupResult.uvDir); + addUvToPathAndOutput(setupResult.uvDir); addToolBinToPath(); setToolDir(); await setupPython(); @@ -129,7 +129,9 @@ async function determineVersion(): Promise { return await resolveVersion(versionFromConfigFile || "latest", githubToken); } -function addUvToPath(cachedPath: string): void { +function addUvToPathAndOutput(cachedPath: string): void { + core.setOutput("uv-path", `${cachedPath}${path.sep}uv`); + core.setOutput("uvx-path", `${cachedPath}${path.sep}uvx`); core.addPath(cachedPath); core.info(`Added ${cachedPath} to the path`); }