File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,10 +29,11 @@ jobs:
2929 if : github.event_name != 'pull_request'
3030 run : dotnet pack --configuration Release --no-build Exceptionless.Net.ClientsOnly.sln
3131 - name : Publish CI Packages
32+ shell : bash
3233 run : |
3334 for package in $(find -name "*.nupkg" | grep "minver" -v); do
3435 echo "${0##*/}": Pushing $package...
35-
36+
3637 # GPR
3738 # workaround for GPR push issue
3839 curl -sX PUT -u "foundatiofx:${{ secrets.GITHUB_TOKEN }}" -F package=@$package https://nuget.pkg.github.com/exceptionless/
4142 dotnet nuget push $package --source https://f.feedz.io/exceptionless/exceptionless/nuget --api-key ${{ secrets.FEEDZ_KEY }}
4243 done
4344 - name : Publish Release Packages
45+ shell : bash
4446 if : startsWith(github.ref, 'refs/tags/v')
4547 run : |
4648 for package in $(find -name "*.nupkg" | grep "minver" -v); do
You can’t perform that action at this time.
0 commit comments