Skip to content

Commit fdea471

Browse files
authored
Merge pull request #79 from rprouse/issue/53
Publish packages to Nuget.org
2 parents 425a3ea + 204c995 commit fdea471

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/dotnet-core.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,6 @@ jobs:
5050

5151
- name: 📤 Publish NuGet to GitHub Packages
5252
run: dotnet nuget push "**/dotnet-todo.*.nupkg" -k ${{ secrets.GITHUB_TOKEN }} --source "github" --skip-duplicate --no-symbols
53+
54+
- name: 📤 Publish NuGet to NuGet.org
55+
run: dotnet nuget push "**/dotnet-todo.*.nupkg" -k ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json

src/todo/todo.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<RepositoryUrl>https://github.com/rprouse/dotnet-todo</RepositoryUrl>
1515
<PackageReadmeFile>Readme.md</PackageReadmeFile>
1616
<PackageId>dotnet-todo</PackageId>
17-
<Version>0.6.2</Version>
17+
<Version>0.6.3</Version>
1818
<PackAsTool>true</PackAsTool>
1919
<ToolCommandName>todo</ToolCommandName>
2020
<PackageOutputPath>./nupkg</PackageOutputPath>

0 commit comments

Comments
 (0)