File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 6868
6969 - name : Create release package
7070 run : |
71- dotnet pack -c RELEASE -p:PackageVersion=${{ github.event.inputs.versionIncrement }} -o ${GITHUB_WORKSPACE}/packages -p:IncludeSymbols =true -p:SymbolPackageFormat=snupkg
71+ dotnet pack -c RELEASE -p:PackageVersion=${{ github.event.inputs.versionIncrement }} -o ${GITHUB_WORKSPACE}/packages -p:ContinuousIntegrationBuild =true --nologo
7272
7373 - name : Upload to nuget
7474 run : |
7575 dotnet nuget push ${GITHUB_WORKSPACE}/packages/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols
76- dotnet nuget push ${GITHUB_WORKSPACE}/packages/*.snupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols
Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ All notable changes to **ValueStringBuilder** will be documented in this file. T
66
77## [ Unreleased]
88
9+ ### Fixed
10+ - Smaller tweaks in CI/CD
11+
12+ ### Removed
13+ - Debug symbol package (snupkg) due to the many constraints of NuGet.org
14+
915## [ 1.0.1] - 2022-04-13
1016
1117### Added
You can’t perform that action at this time.
0 commit comments