We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e196c6 commit 5e36870Copy full SHA for 5e36870
1 file changed
.github/workflows/createrelease.yml
@@ -118,3 +118,9 @@ jobs:
118
with:
119
dotnet-version: 3.0.100
120
121
+ - name: Build and Publish Nuget Packages
122
+ run: |
123
+ dotnet pack "TransactionProcessor.Client\TransactionProcessor.Client.csproj" /p:PackageVersion=${{ steps.get_version.outputs.VERSION }} --output Nugets
124
+ dotnet nuget push Nugets/TransactionProcessor.Client.${{ steps.get_version.outputs.VERSION }}.nupkg --api-key ${{ secrets.MYGET_APIKEY }} --source https://www.myget.org/F/transactionprocessing/api/v2/package
125
+
126
0 commit comments