File tree Expand file tree Collapse file tree 1 file changed +14
-6
lines changed Expand file tree Collapse file tree 1 file changed +14
-6
lines changed Original file line number Diff line number Diff line change 99- packages -> paket.dependencies
1010
1111init :
12- - git config --global core.autocrlf input
13- - ps : >-
12+ - ps : >
13+ git config --global core.autocrlf input
14+
1415 if ($env:APPVEYOR_REPO_TAG -eq "true")
16+
1517 {
18+
1619 Update-AppveyorBuild -Version "$env:APPVEYOR_REPO_TAG_NAME"
20+
1721 }
22+
1823 else
24+
1925 {
20- Update-AppveyorBuild -Version "dev-$($env:APPVEYOR_REPO_COMMIT.substring(0,7))"
26+ $ver = $env:APPVEYOR_BUILD_VERSION
27+ $commit = $env:APPVEYOR_REPO_COMMIT.substring(0,7)
28+ Update-AppveyorBuild -Version "$ver-$commit"
29+
2130 }
2231
2332build_script :
@@ -26,10 +35,10 @@ build_script:
2635after_build :
2736- cmd : nuget pack CommandLine.nuspec -version %APPVEYOR_BUILD_VERSION%
2837
29- test : off # tests handled within FAKE build
38+ test : off # tests handled within FAKE
3039
3140artifacts :
32- - path : build/ *.nupkg
41+ - path : ' *.nupkg'
3342 name : NugetPackage
3443
3544deploy :
@@ -40,4 +49,3 @@ deploy:
4049 on :
4150 branch : master
4251 APPVEYOR_REPO_TAG : true
43-
You can’t perform that action at this time.
0 commit comments