1 parent bb1e4b6 commit a9c35eaCopy full SHA for a9c35ea
1 file changed
.github/workflows/dotnet-desktop.yml
@@ -34,8 +34,13 @@ jobs:
34
- name: Setup .NET
35
uses: actions/setup-dotnet@v3
36
37
+ # Build the project to generate DLLs
38
+ - name: Build project
39
+ run: dotnet build --configuration Release
40
+
41
# Create the NuGet package in the folder from the environment variable NuGetDirectory
- - run: dotnet pack --configuration Release --output ${{ env.NuGetDirectory }}
42
+ - name: Pack Nuget
43
+ run: dotnet pack --configuration Release --output ${{ env.NuGetDirectory }}
44
45
# Publish the NuGet package as an artifact, so they can be used in the following jobs
46
- uses: actions/upload-artifact@v4
0 commit comments