Skip to content

Commit

Permalink
Update action distribution files
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored May 27, 2024
1 parent c439c7f commit 4241b54
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion release/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -39575,7 +39575,10 @@ async function getPrevRelease(inp) {
}
}
function getFiles() {
const files = core.getInput('files', { required: true });
const files = core.getInput('files');
if (files === '') {
return [];
}
return parse.parseMultiInput(files).map(file => {
if (!file.includes(':')) {
return { label: path_1.default.parse(file).name.toLowerCase(), path: file };
Expand Down

0 comments on commit 4241b54

Please sign in to comment.