From e94a2590cb864f23cb437dd6bae521c5058138c4 Mon Sep 17 00:00:00 2001 From: James A Sutherland Date: Tue, 2 Mar 2021 18:28:13 +0000 Subject: [PATCH] Fix nuget command some more --- .github/workflows/testpack.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testpack.yml b/.github/workflows/testpack.yml index fb7bf57..be71780 100644 --- a/.github/workflows/testpack.yml +++ b/.github/workflows/testpack.yml @@ -33,7 +33,7 @@ jobs: - name: Nuget push if: contains(github.ref,'refs/tags/') run: | - dotnet nuget push -skipDuplicate ./BadMedicine.Dicom/bin/Release/HIC.BadMedicine.Dicom.*.nupkg -Source https://api.nuget.org/v3/index.json -ApiKey ${{ secrets.NUGET_KEY }} + nuget push -skipDuplicate ./BadMedicine.Dicom/bin/Release/HIC.BadMedicine.Dicom.*.nupkg -Source https://api.nuget.org/v3/index.json -ApiKey ${{ secrets.NUGET_KEY }} - name: Upload release binaries if: contains(github.ref,'refs/tags/') uses: alexellis/upload-assets@0.2.2