diff --git a/dist/index.js b/dist/index.js index 7b154b3..d129c68 100644 --- a/dist/index.js +++ b/dist/index.js @@ -6644,6 +6644,7 @@ function run() { const path = core.getInput(constants_1.Inputs.Path, { required: false }); // resolve tilde expansion const resolvedPath = path_1.resolve(path.replace('~', os.homedir)); + core.debug(`Resolved path is ${resolvedPath}`); const artifactClient = artifact.create(); if (!name) { // download all artifacts diff --git a/src/download-artifact.ts b/src/download-artifact.ts index ab698d2..765e148 100644 --- a/src/download-artifact.ts +++ b/src/download-artifact.ts @@ -11,6 +11,7 @@ async function run(): Promise { // resolve tilde expansion const resolvedPath = resolve(path.replace('~', os.homedir)) + core.debug(`Resolved path is ${resolvedPath}`) const artifactClient = artifact.create() if (!name) {