Skip to content

Commit 2b58529

Browse files
No snupkg for now
1 parent 2fb969b commit 2b58529

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/dotnet-core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
6161
- name: Publish the package to GPR
6262
if: success() && github.event_name == 'push' && matrix.dotnet == '3.1.x'
63-
run: dotnet nuget push System.Text.Json.Extensions/bin/Release/
63+
run: dotnet nuget push System.Text.Json.Extensions/bin/Release/*.nupkg
6464
- name: Bump versions
6565
if: success() && github.event_name == 'push' && matrix.dotnet == '3.1.x'
6666
uses: SiqiLu/dotnet-bump-version@1.0.1

System.Text.Json.Extensions/System.Text.Json.Extensions.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
55
<PackageId>System.Text.Json.Extensions</PackageId>
6-
<Version>1.0.1</Version>
6+
<Version>1.0.2</Version>
77
<PublishRepositoryUrl>true</PublishRepositoryUrl>
8+
<!--
9+
It seems that GPR currently doesn't work with snupkg, claiming that the nupkg already exists
810
<IncludeSymbols>true</IncludeSymbols>
911
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
12+
-->
13+
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
1014
</PropertyGroup>
1115

1216
<ItemGroup>

0 commit comments

Comments
 (0)