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) {