From 5573a7263fa2ed171721a84f5891c69e4c338433 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Holzer?= Date: Fri, 6 May 2022 09:03:54 +0200 Subject: [PATCH] Fix NuGet publish path --- .github/workflows/dotnet-core.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 36701b3..2dc10f7 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -23,7 +23,7 @@ jobs: - name: Build run: dotnet build --configuration Release --no-restore /p:version=1.1.${{ github.run_number }} - name: NugetPublish - run: dotnet nuget push Sharp7Reactive\Sharp7.Rx\bin\Release\Sharp7.Rx.1.1.${{ github.run_number }}.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_DEPLOY_KEY }} + run: dotnet nuget push Sharp7.Rx\bin\Release\Sharp7.Rx.1.1.${{ github.run_number }}.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_DEPLOY_KEY }} - name: Test run: dotnet test --no-restore --verbosity normal - name: Create Release