Skip to content

Commit 64609f9

Browse files
[no ci] fix params
1 parent c53128e commit 64609f9

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/update-repo.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,14 +302,15 @@ jobs:
302302
const path = `packages/${repo.artifact}`
303303
const options = {
304304
createArtifactFolder: false,
305+
path,
305306
findBy: findByData
306307
}
307308
console.log("downloading " + repo.artifact + " to " + path)
308309
309310
for(var art of artifacts.filter(a => a.name === repo.artifact || a.name && a.name.startsWith(repo.artifact + "-"))) {
310311
try {
311312
console.log(JSON.stringify({name: art.name, id: art.id, path, options}));
312-
const downloadResponse = await artifactClient.downloadArtifact(art.id, path, options);
313+
const downloadResponse = await artifactClient.downloadArtifact(art.id, options);
313314
} catch(err) {
314315
console.log(err)
315316
}

0 commit comments

Comments
 (0)