From ffe3f874ae2d53a33eccc7bb820995b7108a0d34 Mon Sep 17 00:00:00 2001 From: vivet Date: Mon, 8 Sep 2025 15:00:52 +0200 Subject: [PATCH] Fixed env vars --- .github/workflows/build-and-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index e5c41ee..ae7434d 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -51,8 +51,8 @@ jobs: - name: Push NuGet if: github.ref == 'refs/heads/master' run: | - dotnet nuget push nupkgs/$env:APP_NAME"."$env:VERSION.nupkg -s $env:NUGET_HOST -k $env:NUGET_APIKEY - dotnet nuget push nupkgs/$env:APP_NAME"."$env:VERSION.snupkg -s $env:NUGET_HOST -k $env:NUGET_APIKEY + dotnet nuget push "nupkgs/$($env:APP_NAME).$($env:VERSION).nupkg" -s "$($env:NUGET_HOST)" -k "$($env:NUGET_APIKEY)" + dotnet nuget push "nupkgs/$($env:APP_NAME).$($env:VERSION).snupkg" -s "$($env:NUGET_HOST)" -k "$($env:NUGET_APIKEY)" - name: GitHub Release if: github.ref == 'refs/heads/master'