File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77
88jobs :
99 build :
10- runs-on : windows -latest
10+ runs-on : ubuntu -latest
1111
1212 steps :
1313 - name : Checkout code
@@ -22,10 +22,10 @@ jobs:
2222 run : dotnet restore
2323
2424 - name : Build
25- run : dotnet build -c Release
25+ run : dotnet build -c Release --no-restore
2626
2727 - name : Pack
28- run : dotnet pack ./src/com.Messente.Api/com.Messente.Api.csproj -o ./output -c Release --no-build
28+ run : dotnet pack ./src/com.Messente.Api/com.Messente.Api.csproj -o ./output --configuration Release --no-build --no-restore
2929
3030 - name : Publish to NuGet
31- run : dotnet nuget push " ./output/*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
31+ run : dotnet nuget push ./output/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
You can’t perform that action at this time.
0 commit comments