Skip to content

Commit

Permalink
Nuget fix for releases (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdoyle-kx authored Dec 8, 2020
1 parent b57b74f commit 0408297
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
uses: actions/upload-artifact@v1
with:
name: KxSystems.csharpkdb
path: ./kx/bin/Release/kx.${{ github.event.release.tag_name }}.nupkg
path: ./kx/bin/Release/CSharpKDB.${{ github.event.release.tag_name }}.nupkg
- name: Archive NuGet Package
uses: actions/upload-artifact@v1
with:
name: KxSystems.csharpkdb
path: ./kx/bin/Release/kx.${{ github.event.release.tag_name }}.nupkg
path: ./kx/bin/Release/CSharpKDB.${{ github.event.release.tag_name }}.nupkg
- name: Publish Nuget Package
run: dotnet nuget push **/*.nupkg --api-key ${{ secrets.nuget_api_key }} --source https://api.nuget.org/v3/index.json --no-symbols true
10 changes: 5 additions & 5 deletions kx/kx.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Title>CSharpKDB</Title>
<PackageId>CSharpKDB</PackageId>
<Title>CSharpKDB</Title>
<PackageId>CSharpKDB</PackageId>
<Description>Provides functionality for .NET applications to interface with a KDB+ process.</Description>
<Authors>First Derivatives</Authors>
<Owners>First Derivatives</Owners>
<Copyright>Copyright © First Derivatives</Copyright>
<Authors>KX Systems</Authors>
<Owners>KX Systems</Owners>
<Copyright>Copyright © KX Systems</Copyright>
<PackageProjectUrl>https://github.com/KxSystems/csharpkdb</PackageProjectUrl>
<RepositoryUrl>https://github.com/KxSystems/csharpkdb</RepositoryUrl>
<SignAssembly>true</SignAssembly>
Expand Down

0 comments on commit 0408297

Please sign in to comment.