Skip to content

Commit 494440e

Browse files
committed
CI/CD tweaks
1 parent a07bab4 commit 494440e

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/create-release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,8 @@ jobs:
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

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)