diff --git a/dist/index.js b/dist/index.js index 92c74b0..bed1632 100644 --- a/dist/index.js +++ b/dist/index.js @@ -8362,7 +8362,7 @@ function run() { core.debug('computing manifest file path...'); const manifestFilePath = `manifests/${id .charAt(0) - .toLowerCase()}/${id.replace('.', '/')}/${version}.yaml`.trim(); + .toLowerCase()}/${id.replace('.', '/')}/${version}/${id}.yaml`.trim(); core.debug(`manifest file path is: ${manifestFilePath}`); core.debug(`final manifest is:`); core.debug(manifestText); diff --git a/src/main.ts b/src/main.ts index 9c237da..4704fca 100644 --- a/src/main.ts +++ b/src/main.ts @@ -190,7 +190,7 @@ async function run(): Promise { core.debug('computing manifest file path...'); const manifestFilePath = `manifests/${id .charAt(0) - .toLowerCase()}/${id.replace('.', '/')}/${version}.yaml`.trim(); + .toLowerCase()}/${id.replace('.', '/')}/${version}/${id}.yaml`.trim(); core.debug(`manifest file path is: ${manifestFilePath}`); core.debug(`final manifest is:`);