diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39417c9b..c523175c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,7 +77,7 @@ jobs: - name: Configure GitHub NuGet registry run: nuget sources add -name github -source https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json -username ${{ github.repository_owner }} -password ${{ secrets.GITHUB_TOKEN }} - name: Push to GitHub package registry - run: nuget push packages\*.nupkg -ApiKey ${{ secrets.GITHUB_TOKEN }} -Source github + run: nuget push packages\*.nupkg -ApiKey ${{ secrets.GITHUB_TOKEN }} -Source github -SkipDuplicate - name: Push to NuGet.org run: nuget push packages\*.nupkg -ApiKey ${{ secrets.NUGET_API_KEY }} -Source https://api.nuget.org/v3/index.json - name: Create GitHub release diff --git a/src/Hosting.CommandLine/releasenotes.props b/src/Hosting.CommandLine/releasenotes.props index 1abc6069..478f04ad 100644 --- a/src/Hosting.CommandLine/releasenotes.props +++ b/src/Hosting.CommandLine/releasenotes.props @@ -1,5 +1,9 @@ + +Changes: +* Update dependencies to latest .NET 6 libraries. + Improvements: * @scott-xu: feature: add overload of RunCommandLineApplicationAsync to support configuring of CommandLineApplication (#363)