Skip to content

Commit 99b98eb

Browse files
committed
🔧 Update build command to include configuration
Change the build command in the NuGet deployment workflow to specify the Release configuration. This ensures that the project is built with the correct settings for production deployment.
1 parent 7e879a0 commit 99b98eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/nuget-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Restore dependencies
2626
run: dotnet restore ./JamaaTech.Smpp.Net.Client/Smpp.Net.Client.csproj
2727
- name: Build
28-
run: dotnet build --no-restore ./JamaaTech.Smpp.Net.Client/Smpp.Net.Client.csproj
28+
run: dotnet build --configuration Release ./JamaaTech.Smpp.Net.Client/Smpp.Net.Client.csproj
2929
- name: Pack
3030
run: dotnet pack --configuration Release ./JamaaTech.Smpp.Net.Client/Smpp.Net.Client.csproj --output nupkgs
3131
- name: Upload artifact for Publish job

0 commit comments

Comments
 (0)