Skip to content

Commit 915f36c

Browse files
niemyjskiejsmith
authored andcommitted
use bash scripts for publishing packages
1 parent 235bee9 commit 915f36c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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/
@@ -41,6 +42,7 @@ jobs:
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

0 commit comments

Comments
 (0)