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 d16b020 commit b11d17eCopy full SHA for b11d17e
1 file changed
.github/workflows/update-repo.yml
@@ -304,7 +304,7 @@ jobs:
304
}
305
console.log("downloading " + repo.artifact + " to " + path)
306
307
- for(var art of artifacts.filter(a => a.name === repo.artifact || a.name && artifact.name.startsWith(a.artifact + "-"))) {
+ for(var art of artifacts.filter(a => a.name === repo.artifact || a.name && a.name.startsWith(repo.artifact + "-"))) {
308
try {
309
console.log(JSON.stringify({name: art.name, path, options}));
310
const downloadResponse = await artifactClient.downloadArtifact(art.name, path, options);
0 commit comments