Skip to content

Commit

Permalink
Merge pull request #79 from rprouse/issue/53
Browse files Browse the repository at this point in the history
Publish packages to Nuget.org
  • Loading branch information
rprouse authored Sep 30, 2024
2 parents 425a3ea + 204c995 commit fdea471
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,6 @@ jobs:

- name: 📤 Publish NuGet to GitHub Packages
run: dotnet nuget push "**/dotnet-todo.*.nupkg" -k ${{ secrets.GITHUB_TOKEN }} --source "github" --skip-duplicate --no-symbols

- name: 📤 Publish NuGet to NuGet.org
run: dotnet nuget push "**/dotnet-todo.*.nupkg" -k ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
2 changes: 1 addition & 1 deletion src/todo/todo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<RepositoryUrl>https://github.com/rprouse/dotnet-todo</RepositoryUrl>
<PackageReadmeFile>Readme.md</PackageReadmeFile>
<PackageId>dotnet-todo</PackageId>
<Version>0.6.2</Version>
<Version>0.6.3</Version>
<PackAsTool>true</PackAsTool>
<ToolCommandName>todo</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
Expand Down

0 comments on commit fdea471

Please sign in to comment.