From 1fe025118e61463d0b784358b2f148cd61867846 Mon Sep 17 00:00:00 2001 From: Shankar Date: Mon, 9 Dec 2024 22:10:22 +0530 Subject: [PATCH] Update web-editor-deploy.yml - Changed publishing to Debug mode to prevent code trimming issues for now --- .github/workflows/web-editor-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/web-editor-deploy.yml b/.github/workflows/web-editor-deploy.yml index 19f3020..360a32e 100644 --- a/.github/workflows/web-editor-deploy.yml +++ b/.github/workflows/web-editor-deploy.yml @@ -28,7 +28,7 @@ jobs: - name: Restore Dependencies run: dotnet restore ./main/src/Symptum.Editor/Symptum.Editor.csproj - name: Publish - run: dotnet publish ./main/src/Symptum.Editor/Symptum.Editor.csproj "-p:WasmShellWebAppBasePath=/editor/" --no-restore -f net9.0-browserwasm -c Release -o out + run: dotnet publish ./main/src/Symptum.Editor/Symptum.Editor.csproj "-p:WasmShellWebAppBasePath=/editor/" --no-restore -f net9.0-browserwasm -c Debug -o out - name: Create Editor Folder run: mkdir editor - name: Copy Files to Editor Folder