Skip to content
This repository has been archived by the owner on Jan 26, 2022. It is now read-only.

Commit

Permalink
Merge pull request #94 from ldennington/ldennington/update-publish-path
Browse files Browse the repository at this point in the history
Updating manifest publish path
  • Loading branch information
mjcheetham committed Apr 28, 2021
2 parents ae52762 + 2234f7c commit bbac470
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 3 additions & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,10 +188,9 @@ async function run(): Promise<void> {
);

core.debug('computing manifest file path...');
const manifestFilePath = `manifests/${id.replace(
'.',
'/'
)}/${version}.yaml`;
const manifestFilePath = `manifests/${id
.charAt(0)
.toLowerCase()}/${id.replace('.', '/')}/${version}.yaml`.trim();
core.debug(`manifest file path is: ${manifestFilePath}`);

core.debug(`final manifest is:`);
Expand Down

0 comments on commit bbac470

Please sign in to comment.