From 614e55e7a93f632e1a3a00800cf8d2569648079e Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Mon, 20 Nov 2023 14:32:57 +0100 Subject: [PATCH] workflows/test: add -interactive:false --- .gitea/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 75cd5f3..540d4bc 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -17,4 +17,4 @@ jobs: - name: Setup NuGet uses: nuget/setup-nuget@v1 - name: Build Installer - run: msbuild 'Installer/Installer.wixproj' /p:configuration=${{ matrix.configuration }} /p:platform=${{ matrix.platform }} + run: msbuild -interactive:false 'Installer/Installer.wixproj' /p:configuration=${{ matrix.configuration }} /p:platform=${{ matrix.platform }}