fix(ci): use right directory for artifact gathering

This commit is contained in:
Elian Doran 2025-03-23 23:08:02 +02:00
parent fae9a1f796
commit 5d2ea4337c
No known key found for this signature in database

View File

@ -132,7 +132,7 @@ module.exports = {
],
hooks: {
postMake(_, makeResults) {
const outputDir = path.join(__dirname, "upload");
const outputDir = path.join(__dirname, "..", "upload");
fs.mkdirp(outputDir);
for (const makeResult of makeResults) {
for (const artifactPath of makeResult.artifacts) {