diff --git a/.github/workflows/nightly_pr_comment.yml b/.github/workflows/nightly_pr_comment.yml index dd02d05b9..6ca4710dc 100644 --- a/.github/workflows/nightly_pr_comment.yml +++ b/.github/workflows/nightly_pr_comment.yml @@ -40,7 +40,7 @@ jobs: let body = `Download the artifacts for this pull request:\n`; let hidden_debug_artifacts = `\n\n
Only for Developers\n`; for (const art of artifacts) { - var url = `https://github.com/Ryubing/Ryujinx/actions/runs/${run.id}/artifacts/${art.id}`; + const url = `https://github.com/Ryubing/Ryujinx/actions/runs/${run_id}/artifacts/${art.id}`; if(art.name.includes('Debug')) { hidden_debug_artifacts += `\n* [${art.name}](${url})`; } else {