From 4206a2802d972050a339ec81119901627cae3f53 Mon Sep 17 00:00:00 2001 From: Anthony Date: Wed, 9 Mar 2022 14:29:17 -0800 Subject: [PATCH] Fix release push --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b8ab64051..dfba6f6ab 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,6 +44,6 @@ jobs: run: | $version= &git describe --tags cd mzLib - dotnet nuget push mzLib/mzLib.${version}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${env:GITHUB_TOKEN} + dotnet nuget push mzLib.${version}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${env:GITHUB_TOKEN} env: GITHUB_TOKEN: ${{ secrets.NUGET_KEY }}