Skip to content

Commit 02e61ab

Browse files
committed
Update nuget-push-to-production.yml
1 parent 1ebab46 commit 02e61ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/nuget-push-to-production.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@ jobs:
5252
echo "Found packages: $PACKAGES"
5353
for PACKAGE in $PACKAGES; do
5454
echo "Pushing $PACKAGE to nuget.org"
55-
dotnet nuget push "$PACKAGE" --api-key "$NUGET_ORG_API_KEY" --source "https://api.nuget.org/v3/index.json" --skip-duplicate || echo "WARNING - failed to upload package: $PACKAGE" && exit 1
55+
dotnet nuget push "$PACKAGE" --api-key "$NUGET_ORG_API_KEY" --source "https://api.nuget.org/v3/index.json" --skip-duplicate || { echo "WARNING - failed to upload package: $PACKAGE" && exit 1 }
5656
done

0 commit comments

Comments
 (0)