File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 99
1010jobs :
1111 build :
12- runs-on : windows -latest
12+ runs-on : ubuntu -latest
1313
1414 steps :
1515 - name : Checkout code
3535 run : |
3636 $OutputDir = "nuget-packages"
3737 New-Item -ItemType Directory -Force -Path $OutputDir
38- Get-ChildItem -Path . -Recurse -Filter *.nupkg | Copy-Item -Destination $OutputDir
38+ Get-ChildItem -Path . -Recurse -Include *.nupkg,*.snupkg | Copy-Item -Destination $OutputDir
3939
4040 - name : Upload NuGet packages as artifacts
4141 uses : actions/upload-artifact@v4
7171 NUGET_API_KEY : ${{ secrets.NUGET_API_KEY }}
7272 run : |
7373 dotnet nuget push ./nuget-packages/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json
74+ dotnet nuget push ./nuget-packages/*.snupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json
Original file line number Diff line number Diff line change 2121 <PackageTags >http server lightweight self-contained sse iot desktop tools diagnostics</PackageTags >
2222 <IncludeSymbols >true</IncludeSymbols >
2323 <SymbolPackageFormat >snupkg</SymbolPackageFormat >
24+ <EmbedUntrackedSources >true</EmbedUntrackedSources >
25+ <ContinuousIntegrationBuild Condition =" '$(ContinuousIntegrationBuild)'=='' and '$(CI)'!=''" >true</ContinuousIntegrationBuild >
2426
2527 <!-- General build properties -->
2628 <Nullable >enable</Nullable >
Original file line number Diff line number Diff line change 99 " ^refs/heads/release/\\ d+(?:\\ .\\ d+)?$"
1010 ],
1111 "cloudBuild" : {
12- "setAllVariables" : true ,
12+ "setAllVariables" : false ,
1313 "buildNumber" : {
14- "enabled" : true
14+ "enabled" : false
1515 }
1616 },
1717 "release" : {
You can’t perform that action at this time.
0 commit comments