Skip to content

Commit

Permalink
Add feedz (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
trejjam authored Jul 27, 2023
1 parent 4894f59 commit abb1a45
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/nightly-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,8 @@ jobs:
name: Nuget-packages-${{ steps.gitversion.outputs.NuGetVersionV2 }}
path: nuget-packages
- name: Push package to Myget
if: ${{ vars.USE_MYGET == 'true' }}
run: dotnet nuget push 'nuget-packages/*.nupkg' --api-key ${{ secrets.MYGET_API_KEY }} --source https://www.myget.org/F/paypal-sdk-checkout/api/v3/index.json
- name: Push package to Feedz
if: ${{ vars.USE_FEEDZ == 'true' }}
run: dotnet nuget push 'nuget-packages/*.nupkg' --api-key ${{ secrets.FEEDZ_API_KEY }} --source https://f.feedz.io/aviationexam/paypal-sdk-checkout/nuget/index.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using PayPal.Sdk.Checkout.Authentication;
using PayPal.Sdk.Checkout.Core.Converters;
using System.Text.Json;
using System.Text.Json.Serialization;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using PayPal.Sdk.Checkout.Core.Converters;
using PayPal.Sdk.Checkout.Orders;
using System.Collections.Generic;
using System.Text.Json;
Expand Down

0 comments on commit abb1a45

Please sign in to comment.