From e1f5d22aadd358b748c4ba785d0c647383064dbf Mon Sep 17 00:00:00 2001 From: colinator27 <17358554+colinator27@users.noreply.github.com> Date: Mon, 2 Dec 2024 12:12:01 -0500 Subject: [PATCH] Revert debug constant defined for nightly builds --- .github/workflows/publish_gui_nightly.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_gui_nightly.yml b/.github/workflows/publish_gui_nightly.yml index 0c6f8794e..0e6db792f 100644 --- a/.github/workflows/publish_gui_nightly.yml +++ b/.github/workflows/publish_gui_nightly.yml @@ -37,8 +37,8 @@ jobs: dotnet build UndertaleModTool --no-restore dotnet build UndertaleModToolUpdater --no-restore - name: Publish ${{ matrix.os }} GUI - run: | # FIXME: debug constant should automatically be applied, but for some reason it isn't - dotnet publish UndertaleModTool -c ${{ matrix.configuration }} -r win-x64 -p:DefineConstants="SHOW_COMMIT_HASH;DEBUG" --self-contained ${{ matrix.bundled }} -p:PublishSingleFile=${{ matrix.singlefile }} --output ${{ matrix.os }} + run: | # FIXME: debug constant isn't being applied here, which disables updater, etc., so need to fix that or possibly add a new constant + dotnet publish UndertaleModTool -c ${{ matrix.configuration }} -r win-x64 -p:DefineConstants="SHOW_COMMIT_HASH" --self-contained ${{ matrix.bundled }} -p:PublishSingleFile=${{ matrix.singlefile }} --output ${{ matrix.os }} dotnet publish UndertaleModToolUpdater -c ${{ matrix.configuration }} -r win-x64 --self-contained ${{ matrix.bundled }} -p:PublishSingleFile=false --output ${{ matrix.os }}/Updater - name: Copy external files run: |