Skip to content

Commit d4a75a6

Browse files
authored
Fixed env vars (#28)
1 parent 4c4531d commit d4a75a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-and-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ jobs:
5151
- name: Push NuGet
5252
if: github.ref == 'refs/heads/master'
5353
run: |
54-
dotnet nuget push nupkgs/$env:APP_NAME"."$env:VERSION.nupkg -s $env:NUGET_HOST -k $env:NUGET_APIKEY
55-
dotnet nuget push nupkgs/$env:APP_NAME"."$env:VERSION.snupkg -s $env:NUGET_HOST -k $env:NUGET_APIKEY
54+
dotnet nuget push "nupkgs/$($env:APP_NAME).$($env:VERSION).nupkg" -s "$($env:NUGET_HOST)" -k "$($env:NUGET_APIKEY)"
55+
dotnet nuget push "nupkgs/$($env:APP_NAME).$($env:VERSION).snupkg" -s "$($env:NUGET_HOST)" -k "$($env:NUGET_APIKEY)"
5656
5757
- name: GitHub Release
5858
if: github.ref == 'refs/heads/master'

0 commit comments

Comments
 (0)