We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f3e90f commit b394d34Copy full SHA for b394d34
1 file changed
.github/workflows/publish.yml
@@ -35,9 +35,11 @@ jobs:
35
36
- run: dotnet nuget push "*.nupkg" -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate
37
working-directory: ./publish
38
+ continue-on-error: true
39
- - run: dotnet nuget push "*.nupkg" -s https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json --skip-duplicate --no-symbols true --api-key ${{ secrets.GITHUB_TOKEN }}
40
+ - run: dotnet nuget push "*.nupkg" -k ${{ secrets.GITHUB_TOKEN }} -s "https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json" --skip-duplicate
41
42
43
44
- uses: actions/create-release@master
45
continue-on-error: true
0 commit comments