mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 11:26:15 +01:00
feat(ci): experiment with building Windows on same runner
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user