diff options
| author | Bond-009 <bond.009@outlook.com> | 2020-07-13 20:44:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-13 20:44:07 +0200 |
| commit | f1a7b0586bfc09f12beae8cef8d4f412b65e064d (patch) | |
| tree | 403b865502637b140f0d99559cdc77f5dc72a3e6 | |
| parent | 8a28b557604b4a507d36a573fcef0c5a7c63a5dd (diff) | |
| parent | b4212cc2102f1abfeb40fde6ff05e7a94599633c (diff) | |
Merge pull request #3553 from joshuaboniface/fix-azure-fuckery
Explicitly add what Azure used to do implicitly
| -rw-r--r-- | .ci/azure-pipelines-package.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.ci/azure-pipelines-package.yml b/.ci/azure-pipelines-package.yml index 090746398..5539b16ab 100644 --- a/.ci/azure-pipelines-package.yml +++ b/.ci/azure-pipelines-package.yml @@ -50,6 +50,13 @@ jobs: targetPath: '$(Build.SourcesDirectory)/deployment/dist' artifactName: 'jellyfin-server-$(BuildConfiguration)' + - task: SSH@0 + displayName: 'Create target directory on repository server' + inputs: + sshEndpoint: repository + runOptions: 'inline' + inline: 'mkdir -p /srv/repository/incoming/azure/$(Build.BuildNumber)/$(BuildConfiguration)' + - task: CopyFilesOverSSH@0 displayName: 'Upload artifacts to repository server' inputs: |
