Skip to content

Commit a9c35ea

Browse files
authored
Update dotnet-desktop.yml
1 parent bb1e4b6 commit a9c35ea

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/dotnet-desktop.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,13 @@ jobs:
3434
- name: Setup .NET
3535
uses: actions/setup-dotnet@v3
3636

37+
# Build the project to generate DLLs
38+
- name: Build project
39+
run: dotnet build --configuration Release
40+
3741
# Create the NuGet package in the folder from the environment variable NuGetDirectory
38-
- run: dotnet pack --configuration Release --output ${{ env.NuGetDirectory }}
42+
- name: Pack Nuget
43+
run: dotnet pack --configuration Release --output ${{ env.NuGetDirectory }}
3944

4045
# Publish the NuGet package as an artifact, so they can be used in the following jobs
4146
- uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)