File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -3,5 +3,6 @@ if($env:CONFIGURATION -eq "Release") # is not a pull request
33 cd $env: APPVEYOR_BUILD_FOLDER
44 cd common
55 nuget pack PCLExt.FileStorage- devel.nuspec - Version $env: APPVEYOR_BUILD_VERSION
6- Push-AppveyorArtifact " PCLExt.FileStorage.*.nupkg" - FileName nuget
6+ $nupkg = (Get-ChildItem PCLExt.FileStorage- devel* .nupkg)[0 ];
7+ Push-AppveyorArtifact $nupkg.FullName - FileName $nupkg.Name - DeploymentName " PCLExt.FileStorage-devel.nupkg" ;
78}
Original file line number Diff line number Diff line change @@ -3,5 +3,6 @@ if($env:CONFIGURATION -eq "Release") # is not a pull request
33 cd $env: APPVEYOR_BUILD_FOLDER
44 cd common
55 nuget pack PCLExt.FileStorage.nuspec - Version $env: APPVEYOR_BUILD_VERSION
6- Push-AppveyorArtifact " PCLExt.FileStorage.*.nupkg" - FileName nuget
6+ $nupkg = (Get-ChildItem PCLExt.FileStorage* .nupkg)[0 ];
7+ Push-AppveyorArtifact $nupkg.FullName - FileName $nupkg.Name - DeploymentName " PCLExt.FileStorage.nupkg" ;
78}
Original file line number Diff line number Diff line change 8080 api_key :
8181 secure : yoZtG3i28wVuNDk1HrGW/t3tsgt3Ru/Yk/y/sOzUHRc2WVZlynVdWSHK/Bp0uShJ
8282 skip_symbols : false
83- artifact : nuget
83+ artifact : PCLExt.FileStorage.nupkg
8484 on :
8585 configuration : Release
8686 APPVEYOR_REPO_TAG : true
149149 api_key :
150150 secure : yoZtG3i28wVuNDk1HrGW/t3tsgt3Ru/Yk/y/sOzUHRc2WVZlynVdWSHK/Bp0uShJ
151151 skip_symbols : false
152- artifact : nuget
152+ artifact : PCLExt.FileStorage-devel.nupkg
153153 on :
154154 configuration : Release
155155
You can’t perform that action at this time.
0 commit comments