From b6acfe3668892855e986aca43a49b7610611c5ec Mon Sep 17 00:00:00 2001 From: Konrad Pabjan Date: Wed, 10 Jan 2024 16:25:21 +0000 Subject: [PATCH] Simplify output --- dist/index.js | 2 +- src/upload-artifact.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 59b9d87..08610f3 100644 --- a/dist/index.js +++ b/dist/index.js @@ -127066,7 +127066,7 @@ function run() { core.setOutput('artifact-id', uploadResponse.id); const repository = github.context.repo; const artifactURL = `${github.context.serverUrl}/${repository.owner}/${repository.repo}/actions/runs/${github.context.runId}/artifacts/${uploadResponse.id}`; - core.info(`Artifact web download URL: ${artifactURL}`); + core.info(`Artifact download URL: ${artifactURL}`); core.setOutput('artifact-url', artifactURL); } } diff --git a/src/upload-artifact.ts b/src/upload-artifact.ts index 33a505b..c2f7185 100644 --- a/src/upload-artifact.ts +++ b/src/upload-artifact.ts @@ -62,7 +62,7 @@ async function run(): Promise { const repository = github.context.repo const artifactURL = `${github.context.serverUrl}/${repository.owner}/${repository.repo}/actions/runs/${github.context.runId}/artifacts/${uploadResponse.id}` - core.info(`Artifact web download URL: ${artifactURL}`) + core.info(`Artifact download URL: ${artifactURL}`) core.setOutput('artifact-url', artifactURL) } } catch (error) {