Skip to content

Commit 3a883aa

Browse files
committed
Enables VSIX pushing to Appveyor Artifacts
1 parent 10b4779 commit 3a883aa

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

appveyor.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,14 @@ assembly_info:
1111
before_build:
1212
- cmd: nuget restore
1313
build:
14-
verbosity: minimal
14+
verbosity: minimal
15+
16+
17+
on_success:
18+
- ps: >-
19+
20+
If (($env:APPVEYOR_REPO_BRANCH -eq "master") -and (!$env:APPVEYOR_PULL_REQUEST_NUMBER)) {
21+
22+
Get-ChildItem .\*.vsix | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
23+
24+
}

0 commit comments

Comments
 (0)