Copy artifacts over to build server

This commit is contained in:
Joshua M. Boniface 2020-06-12 15:09:23 -04:00
parent 346e1b0dc7
commit ceacedd6fd

View file

@ -28,3 +28,11 @@ jobs:
inputs:
targetPath: '$(Build.SourcesDirectory)/deployment/dist'
artifactName: 'jellyfin-web-$(BuildConfiguration)'
- task: CopyFilesOverSSH@0
displayName: 'Upload artifacts to repository server'
inputs:
sshEndpoint: repository
sourceFolder: '$(Build.SourcesDirectory)/deployment/dist'
contents: '**'
targetFolder: '/srv/repository/incoming/azure'