github/workflows: link MSVC artifacts in comments

This commit is contained in:
Kacper Michajłow 2024-05-03 01:36:13 +02:00
parent 0ffabf5d45
commit 425c6d03d7
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ jobs:
let body = `Download the artifacts for this pull request:\n\n<details><summary>Windows</summary>\n`;
for (const art of artifacts) {
const art_link = `https://nightly.link/${owner}/${repo}/actions/artifacts/${art.id}.zip`;
if (art.name.includes('w64')) {
if (art.name.includes('w64') || art.name.includes('msvc')) {
body += `\n* [${art.name}](${art_link})`;
}
}