From dce47cc9fec2f16ca05a448941c19c50d2daa2b7 Mon Sep 17 00:00:00 2001 From: Danilo Lutz Souza Date: Tue, 23 Aug 2022 22:33:20 -0300 Subject: [PATCH] fix: nuget packages versioning --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0ea10c8..0dc5d43 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -22,4 +22,4 @@ jobs: - name: Create the package run: dotnet pack --configuration Release CoreZipCode.sln --include-symbols -p:PackageVersion=${{github.ref_name}} -v normal - name: Publish the package to GPR - run: dotnet nuget push CoreZipCode/bin/Release/CoreZipCode.${{github.ref_name}.nupkg --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json + run: dotnet nuget push CoreZipCode/bin/Release/CoreZipCode.${{github.ref_name}}.nupkg --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json