From 917b798e9862dad6366b3a51f8397df1c8f4dabd Mon Sep 17 00:00:00 2001 From: Chris Johnston Date: Wed, 9 Jan 2019 11:43:55 -0800 Subject: [PATCH] Change suffix to be "-build####" --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 51204eaeb..622cad454 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -64,7 +64,7 @@ after_build: if ($Env:APPVEYOR_REPO_TAG -eq "true") { nuget pack src/Discord.Net/Discord.Net.nuspec -OutputDirectory "artifacts" -properties suffix="" } else { - nuget pack src/Discord.Net/Discord.Net.nuspec -OutputDirectory "artifacts" -properties suffix="-pr$Env:BUILD" + nuget pack src/Discord.Net/Discord.Net.nuspec -OutputDirectory "artifacts" -properties suffix="-build$Env:BUILD" } } - ps: if ($isWindows) { Get-ChildItem artifacts/*.nupkg | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } }