We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da5ac70 commit 44fd2d9Copy full SHA for 44fd2d9
.github/workflows/virustotal.yml
@@ -112,7 +112,8 @@ jobs:
112
core.warning(`Skipping invalid analysis line: ${analysisLine}`);
113
return;
114
}
115
- const [_, filename, analysisURL] = match;
+ const [_, absoluteFilePath, analysisURL] = match;
116
+ const filename = absoluteFilePath.split(/[/\\]/).pop();
117
detailsLines.push(`* [${filename}](${analysisURL})`);
118
});
119
if (detailsLines.length === 0) {
0 commit comments