Skip to content

Commit

Permalink
Push to nuget (#58)
Browse files Browse the repository at this point in the history
* Added pushing to nuget.org
* Added nuget package metadata

Solves #55
  • Loading branch information
erikbra authored Sep 26, 2021
1 parent 998b68c commit fa1f97d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ jobs:
with:
name: grate-dotnet-tool-${{ needs.set-version-number.outputs.version }}
path: /tmp/grate/nupkg/*
- name: Push to Nuget.org
if: ${{ needs.set-version-number.outputs.is-release == 'true' }}
run: dotnet nuget push /tmp/grate/nupkg/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{secrets.NUGET_ORG_KEY}} --skip-duplicate

build-standalone:
name: Build
Expand Down
11 changes: 11 additions & 0 deletions grate/grate.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@
<TargetFramework>net6.0</TargetFramework>
<DebugType>Embedded</DebugType>
<Nullable>enable</Nullable>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Authors>Erik A. Brandstadmoen</Authors>
<Description>
grate - sql for the 20s

grate is a no-code, low-fi database migration tool, inspired heavily by RoundhousE. It's written from the ground
up using modern .NET 6.
</Description>
<PackageProjectUrl>https://erikbra.github.io/grate/</PackageProjectUrl>
<RepositoryUrl>https://github.com/erikbra/grate</RepositoryUrl>
<PackageTags>sql migration no-code</PackageTags>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit fa1f97d

Please sign in to comment.