Skip to content

Commit 82dc3be

Browse files
committed
Finally fixing deployment script.
1 parent 0ba844c commit 82dc3be

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

appveyor.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,11 @@ artifacts:
8989
deploy_script:
9090
- ps: |
9191
if ($Env:APPVEYOR_REPO_TAG -eq $true) {
92-
write-host "test"
92+
cd "$($Env:APPVEYOR_BUILD_FOLDER)\extension\EFDocumentationGenerator.Package"
93+
$nugetCache = nuget locals all -list | where { $_ -like 'global-packages:*' } | %{ $_ -split ': ' } | select -last 1
94+
$vsixPublisher = Get-ChildItem -File ($nugetCache + '\microsoft.vssdk.buildtools') -recurse |
95+
where { $_.Name -eq 'VsixPublisher.exe' } |
96+
sort -Descending -Property CreationTime |
97+
select -First 1 -ExpandProperty FullName
98+
& $vsixPublisher publish -payload $artifacts['vsix'].path -publishManifest 'manifest.json' -personalAccessToken $Env:publication_token
9399
}

0 commit comments

Comments
 (0)