Skip to content

Commit b394d34

Browse files
committed
continue on error
1 parent 2f3e90f commit b394d34

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,11 @@ jobs:
3535

3636
- run: dotnet nuget push "*.nupkg" -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate
3737
working-directory: ./publish
38+
continue-on-error: true
3839

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
4041
working-directory: ./publish
42+
continue-on-error: true
4143

4244
- uses: actions/create-release@master
4345
continue-on-error: true

0 commit comments

Comments
 (0)