File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -29,10 +29,11 @@ jobs:
29
29
if : github.event_name != 'pull_request'
30
30
run : dotnet pack --configuration Release --no-build Exceptionless.Net.ClientsOnly.sln
31
31
- name : Publish CI Packages
32
+ shell : bash
32
33
run : |
33
34
for package in $(find -name "*.nupkg" | grep "minver" -v); do
34
35
echo "${0##*/}": Pushing $package...
35
-
36
+
36
37
# GPR
37
38
# workaround for GPR push issue
38
39
curl -sX PUT -u "foundatiofx:${{ secrets.GITHUB_TOKEN }}" -F package=@$package https://nuget.pkg.github.com/exceptionless/
41
42
dotnet nuget push $package --source https://f.feedz.io/exceptionless/exceptionless/nuget --api-key ${{ secrets.FEEDZ_KEY }}
42
43
done
43
44
- name : Publish Release Packages
45
+ shell : bash
44
46
if : startsWith(github.ref, 'refs/tags/v')
45
47
run : |
46
48
for package in $(find -name "*.nupkg" | grep "minver" -v); do
You can’t perform that action at this time.
0 commit comments