We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ee5e2f commit 3106416Copy full SHA for 3106416
.github/workflows/dotnet.yml
@@ -1,4 +1,4 @@
1
-name: .NET
+name: Build and deploy
2
3
on:
4
push:
@@ -24,6 +24,6 @@ jobs:
24
run: dotnet pack --no-build --configuration Release PAYNLSDK/PayNLSdk.csproj --output .
25
- name: Push Nuget
26
if: ${{ github.ref == 'refs/heads/main' }}
27
- run: |
28
- dotnet nuget push *.snupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_PUBLISH_KEY }} --skip-duplicate
+ run: |
29
dotnet nuget push *.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_PUBLISH_KEY }} --skip-duplicate
+ dotnet nuget push *.snupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_PUBLISH_KEY }} --skip-duplicate
0 commit comments