Skip to content

Commit 59f671d

Browse files
authored
[MOO-1569]: Fix marketplace release pipeline (#159)
2 parents e032ca7 + d87952e commit 59f671d

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ node_modules
99
*.launch
1010
mxproject
1111
coverage
12+
/tmp
1213

1314
detox/apps
1415
detox/*.log

packages/jsActions/nanoflow-actions-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@
3636
"eslint": "^7.20.0",
3737
"rollup": "^2.68.0"
3838
}
39-
}
39+
}

scripts/automation/mxbuild.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/runtime:6.0
1+
FROM mcr.microsoft.com/dotnet/runtime:8.0
22
ARG MENDIX_VERSION
33

44
RUN \

scripts/release/module-automation/commons.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ async function createModuleMpkInDocker(sourceDir, moduleName, mendixVersion, exc
8282
const projectFile = basename((await getFiles(sourceDir, [`.mpr`]))[0]);
8383
await execShellCommand(
8484
`docker run -t -v ${sourceDir}:/source ` +
85-
`--rm mxbuild:${mendixVersion} bash -c "mx update-widgets --loose-version-check /source/${projectFile} && mono /tmp/mxbuild/modeler/mxutil.exe create-module-package ${
85+
`--rm mxbuild:${mendixVersion} bash -c "mx update-widgets --loose-version-check /source/${projectFile} && dotnet /tmp/mxbuild/modeler/mx.dll create-module-package ${
8686
excludeFilesRegExp ? `--exclude-files='${excludeFilesRegExp}'` : ""
8787
} /source/${projectFile} ${moduleName}"`
8888
);

0 commit comments

Comments
 (0)