Skip to content

Commit 24f0ca0

Browse files
committed
do not pull down credentials if it is not a PR
1 parent a723fc4 commit 24f0ca0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

appveyor.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ install:
3535
3636
before_build:
3737
- ps: >-
38-
git clone https://$env:[email protected]/germanatt/sdk-credentials.git C:\projects\sdk-credentials
38+
if($env:APPVEYOR_PULL_REQUEST_NUMBER -eq $null)
39+
{
40+
git clone https://$env:[email protected]/germanatt/sdk-credentials.git C:\projects\sdk-credentials
41+
}
3942
4043
dotnet restore
4144

0 commit comments

Comments
 (0)