summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorGarrett Cox <garrettjcox@gmail.com>2024-05-27 21:18:14 -0500
committerGitHub <noreply@github.com>2024-05-27 21:18:14 -0500
commit788c74a19e130a237da7d0945fd4cd3b2894ddcf (patch)
treeaa17108df6f3e8869c419886e29f96ff52c3977b /.github/workflows
parent41e35ff3ee77dd5e184416e1b50982ec1477ad19 (diff)
Fix PR artifacts (#563)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/pr-artifacts.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/pr-artifacts.yml b/.github/workflows/pr-artifacts.yml
index 97209d74f..52ec62826 100644
--- a/.github/workflows/pr-artifacts.yml
+++ b/.github/workflows/pr-artifacts.yml
@@ -48,7 +48,7 @@ jobs:
return allArtifacts.data.artifacts.reduce((acc, item) => {
if (item.name === "assets") return acc;
- it (item.name === "2ship.o2r") return acc;
+ if (item.name === "2ship.o2r") return acc;
acc += `
- [${item.name}.zip](https://nightly.link/${context.repo.owner}/${context.repo.repo}/actions/artifacts/${item.id}.zip)`;
return acc;