From 6ed30299f24d0238eb410f083503254a1881a377 Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Mon, 20 Nov 2023 14:49:22 +0100 Subject: [PATCH] workflows/test: add shell --- .gitea/workflows/test.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 2c36244..e903f57 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -17,4 +17,5 @@ jobs: - name: Setup NuGet uses: nuget/setup-nuget@v1 - name: Build Installer - run: cmd -c msbuild 'Installer/Installer.wixproj' -p:configuration=${{ matrix.configuration }} -p:platform=${{ matrix.platform }} + shell: cmd -c {0} + run: msbuild 'Installer/Installer.wixproj' -p:configuration=${{ matrix.configuration }} -p:platform=${{ matrix.platform }}