Skip to content

Commit cd0f62f

Browse files
Fix NuGet publishing GitHub Actions workflow to properly build/pack from scratch
1 parent 519b2ba commit cd0f62f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/nuget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
dotnet-version: 5.0.x
1818

1919
- name: Run tests
20-
run: dotnet test -c Release
20+
run: dotnet test
2121

2222
- name: Package
2323
run: dotnet pack -c Release -p:ContinuousIntegrationBuild=true

src/SrcSet.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>net5.0</TargetFramework>
5-
<Version>3.1.0</Version>
5+
<Version>3.1.1</Version>
66
<PackageId>SrcSet</PackageId>
77
<Description>A CLI to create sets of responsive images for the web</Description>
88
<Authors>ecoAPM LLC</Authors>
@@ -12,7 +12,6 @@
1212
<AssemblyName>srcset</AssemblyName>
1313
<OutputType>Exe</OutputType>
1414
<PackAsTool>true</PackAsTool>
15-
<Deterministic>true</Deterministic>
1615
<PackageReadmeFile>README.md</PackageReadmeFile>
1716
<PackageProjectUrl>https://github.com/ecoAPM/SrcSet</PackageProjectUrl>
1817
<PackageLicenseExpression>MIT</PackageLicenseExpression>

0 commit comments

Comments
 (0)