We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ba844c commit 82dc3beCopy full SHA for 82dc3be
appveyor.yml
@@ -89,5 +89,11 @@ artifacts:
89
deploy_script:
90
- ps: |
91
if ($Env:APPVEYOR_REPO_TAG -eq $true) {
92
- write-host "test"
+ 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
99
}
0 commit comments