diff --git a/.github/workflows/comment.yml b/.github/workflows/comment.yml index c80f1d800d..88aa4cd784 100644 --- a/.github/workflows/comment.yml +++ b/.github/workflows/comment.yml @@ -41,7 +41,7 @@ jobs: let body = `Download the artifacts for this pull request:\n\n
Windows\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})`; } }