From c418235c7f67519b49c0f86df18da5d3325cb532 Mon Sep 17 00:00:00 2001 From: Michael Grafnetter Date: Sun, 15 Sep 2024 12:17:51 +0200 Subject: [PATCH] Fixed broken unit tests --- .github/workflows/autobuild.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/autobuild.yml b/.github/workflows/autobuild.yml index bb500fa..8504df7 100644 --- a/.github/workflows/autobuild.yml +++ b/.github/workflows/autobuild.yml @@ -37,7 +37,9 @@ jobs: - name: Build Binaries working-directory: Src - run: dotnet build --configuration Release --no-restore + run: | + dotnet build --configuration Release --no-restore + dotnet build --configuration Debug --no-restore - name: Upload Desktop App as Artifact uses: actions/upload-artifact@v4 @@ -47,13 +49,13 @@ jobs: - name: Build PowerShell Module working-directory: Scripts - shell: PowerShell + shell: powershell run: .\Build-PowerShellModule.ps1 -Configuration Release - name: Upload PowerShell Module as Artifact uses: actions/upload-artifact@v4 with: - name: PowerShell + name: powershell path: Build/bin/PSModule/Release/* - name: Create NuGet Packages