Skip to content

Commit

Permalink
Fix multiline
Browse files Browse the repository at this point in the history
  • Loading branch information
flcdrg committed Jul 20, 2017
1 parent 2fed260 commit fd628dc
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ deploy:
appveyor_repo_tag: true # deploy on tag push only

on_success:
- ps: Get-ChildItem -Recurse *.vsix | ForEach-Object {
- ps: Push-AppveyorArtifact $_.FullName -FileName ([IO.Path]::ChangeExtension($_.Name, "-$($env:VsixVersion).vsix")) -DeploymentName VsixFile
- ps: if ($env:GitVersion_BranchName -eq "master") { Vsix-PublishToGallery $_.FullName }
- ps: }
- ps: |
Get-ChildItem -Recurse *.vsix | ForEach-Object {
Push-AppveyorArtifact $_.FullName -FileName ([IO.Path]::ChangeExtension($_.Name, "-$($env:VsixVersion).vsix")) -DeploymentName VsixFile
if ($env:GitVersion_BranchName -eq "master") { Vsix-PublishToGallery $_.FullName }
}

0 comments on commit fd628dc

Please sign in to comment.