Skip to content

Commit

Permalink
Adding assets to build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasnoble committed May 22, 2019
1 parent cbc9991 commit 0ec74f8
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ steps:
inputs:
restoreSolution: '$(solution)'

- task: CopyFiles@2
inputs:
Contents: |
LICENSE
i18n/*.po
TargetFolder: '$(build.artifactStagingDirectory)/assets'

- task: VSBuild@1
inputs:
solution: '$(solution)'
Expand All @@ -27,7 +34,7 @@ steps:
Contents: |
vsprojects/Release/*.exe
vsprojects/Release/*.dll
TargetFolder: '$(build.artifactStagingDirectory)'
TargetFolder: '$(build.artifactStagingDirectory)/binaries'

- task: VSBuild@1
inputs:
Expand All @@ -41,7 +48,7 @@ steps:
Contents: |
vsprojects/x64/Release/*.exe
vsprojects/x64/Release/*.dll
TargetFolder: '$(build.artifactStagingDirectory)'
TargetFolder: '$(build.artifactStagingDirectory)/binaries'

- task: PublishBuildArtifacts@1
inputs:
Expand Down

0 comments on commit 0ec74f8

Please sign in to comment.