Skip to content

Commit

Permalink
Fixed broken unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelGrafnetter authored Sep 15, 2024
1 parent 6797cf9 commit c418235
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/autobuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit c418235

Please sign in to comment.