Revert "feat(ci): experiment with building Windows on same runner"

This reverts commit ce305f0f45.
This commit is contained in:
Elian Doran
2025-06-21 14:18:41 +03:00
parent 5fbd34c7c1
commit 520b862551
2 changed files with 8 additions and 63 deletions

View File

@@ -214,9 +214,9 @@ const config: ForgeConfig = {
},
// Gather all the artifacts produced by the makers and copy them to a common upload directory.
async postMake(_, makeResults) {
const outputDir = path.join(__dirname, "..", "upload");
fs.mkdirpSync(outputDir);
for (const makeResult of makeResults) {
const outputDir = path.join(__dirname, "..", "upload", makeResult.arch);
fs.mkdirpSync(outputDir);
for (const artifactPath of makeResult.artifacts) {
// Ignore certain artifacts.
let fileName = path.basename(artifactPath);