We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf52fa1 commit 1fcf93dCopy full SHA for 1fcf93d
.github/workflows/nuget-package.yml
@@ -24,8 +24,11 @@ jobs:
24
- name: Restore dependencies
25
run: dotnet restore
26
27
+ - name: Build project
28
+ run: dotnet build src/Gml.Core.Interfaces/Gml.Core.Interfaces.csproj --configuration Release
29
+
30
- name: Pack NuGet package
- run: dotnet pack src/Gml.Core.Interfaces/Gml.Core.Interfaces.csproj --configuration Release --output ./nupkgs
31
+ run: dotnet pack src/Gml.Core.Interfaces/Gml.Core.Interfaces.csproj --configuration Release --no-build --output ./nupkgs
32
33
- name: Publish to NuGet.org
34
run: dotnet nuget push "./nupkgs/*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
0 commit comments