diff --git a/.gitignore b/.gitignore index 716cf8175..5f9c1c3ff 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ node_modules *.launch mxproject coverage +/tmp detox/apps detox/*.log diff --git a/packages/jsActions/nanoflow-actions-native/package.json b/packages/jsActions/nanoflow-actions-native/package.json index 6ca689bba..26f813c4d 100644 --- a/packages/jsActions/nanoflow-actions-native/package.json +++ b/packages/jsActions/nanoflow-actions-native/package.json @@ -36,4 +36,4 @@ "eslint": "^7.20.0", "rollup": "^2.68.0" } -} \ No newline at end of file +} diff --git a/scripts/automation/mxbuild.Dockerfile b/scripts/automation/mxbuild.Dockerfile index 5b261601f..49d751b81 100644 --- a/scripts/automation/mxbuild.Dockerfile +++ b/scripts/automation/mxbuild.Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/runtime:6.0 +FROM mcr.microsoft.com/dotnet/runtime:8.0 ARG MENDIX_VERSION RUN \ diff --git a/scripts/release/module-automation/commons.js b/scripts/release/module-automation/commons.js index de9e46792..e51de0002 100644 --- a/scripts/release/module-automation/commons.js +++ b/scripts/release/module-automation/commons.js @@ -82,7 +82,7 @@ async function createModuleMpkInDocker(sourceDir, moduleName, mendixVersion, exc const projectFile = basename((await getFiles(sourceDir, [`.mpr`]))[0]); await execShellCommand( `docker run -t -v ${sourceDir}:/source ` + - `--rm mxbuild:${mendixVersion} bash -c "mx update-widgets --loose-version-check /source/${projectFile} && mono /tmp/mxbuild/modeler/mxutil.exe create-module-package ${ + `--rm mxbuild:${mendixVersion} bash -c "mx update-widgets --loose-version-check /source/${projectFile} && dotnet /tmp/mxbuild/modeler/mx.dll create-module-package ${ excludeFilesRegExp ? `--exclude-files='${excludeFilesRegExp}'` : "" } /source/${projectFile} ${moduleName}"` );