We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7be2088 commit 308449fCopy full SHA for 308449f
Build.ps1
@@ -93,14 +93,6 @@ function CreateNuGetPackage {
93
CheckLastExitCode
94
}
95
96
-function LoadOpenApiBranchIfRequired {
97
- if ($env:APPVEYOR_REPO_BRANCH -eq "openapi") {
98
- git fetch origin openapi:openapi
99
- }
100
-}
101
-
102
-LoadOpenApiBranchIfRequired
103
104
dotnet tool restore
105
106
appveyor.yml
@@ -20,6 +20,12 @@ branches:
20
- unstable
21
- /release\/.+/
22
23
+clone_script:
24
+ - ps: |
25
+ git clone --branch=$env:appveyor_repo_branch git@github.com:$env:appveyor_repo_name.git $env:appveyor_build_folder
26
+ git fetch -q origin +refs/pull/$env:appveyor_pull_request_number/merge:
27
+ git checkout -qf FETCH_HEAD
28
+
29
pull_requests:
30
do_not_increment_build_number: true
31
0 commit comments