From 1c11ab7a5887db4ac5fa12b08bf35b1be47647db Mon Sep 17 00:00:00 2001 From: kdysput Date: Wed, 3 Jul 2024 11:46:18 +0200 Subject: [PATCH] Print directory before publish --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b248cac..b37059b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,4 +30,6 @@ jobs: - name: Publish to NuGet env: NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} - run: dotnet nuget push ./Backtrace.${{ github.ref_name }}.nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json + run: | + ls + dotnet nuget push Backtrace.${{ github.ref_name }}.nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json