Skip to content

Commit

Permalink
nuget pub (#46)
Browse files Browse the repository at this point in the history
* nuget pub

* fixes - reading is hard
  • Loading branch information
Chris Nantau authored May 1, 2021
1 parent bf1c0ee commit 0c97cb6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ jobs:
dotnet restore
$VERSION = $("${{github.ref}}" -split "/")[-1].Substring(1)
dotnet pack --configuration Release --output ./pack /p:PackageVersion=$VERSION
dotnet nuget push ./pack/*.nupkg --api-key ${{ secrets.NUGET_TOKEN }}
dotnet nuget push ./pack/*.nupkg -s https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_TOKEN }}
shell: pwsh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
Expand Down Expand Up @@ -31,5 +31,4 @@
<ItemGroup>
<ProjectReference Include="..\wimm.Secundatives\wimm.Secundatives.csproj" />
</ItemGroup>

</Project>
8 changes: 7 additions & 1 deletion wimm.Secundatives/wimm.Secundatives.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Description>A collection of types slightly more advanced than primitives.</Description>
<Authors>Chris Nantau, Thomas Showers</Authors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Authors>Thomas Showers, Chris Nantau, Secundatives Contributors</Authors>
<Company>wareismymind</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/wareismymind/Secundatives</PackageProjectUrl>
<RepositoryUrl>https://github.com/wareismymind/Secundatives</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<IncludeSymbols>true</IncludeSymbols>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down

0 comments on commit 0c97cb6

Please sign in to comment.