diff options
| author | Cody Robibero <cody@robibe.ro> | 2021-09-03 14:21:33 -0600 |
|---|---|---|
| committer | Cody Robibero <cody@robibe.ro> | 2021-09-03 14:21:33 -0600 |
| commit | 7a0a675bd5d668199de1f0763988ca7809b78fb0 (patch) | |
| tree | ce01af3d8cfdb5d6af8ced260d539036bb016ba5 /.ci | |
| parent | e229f6d9bb2df96bfe405a3b05e17000700e6806 (diff) | |
Add Jellyfin.Extensions to package publish
Diffstat (limited to '.ci')
| -rw-r--r-- | .ci/azure-pipelines-main.yml | 7 | ||||
| -rw-r--r-- | .ci/azure-pipelines.yml | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/.ci/azure-pipelines-main.yml b/.ci/azure-pipelines-main.yml index d2c087c14..e9b93baaf 100644 --- a/.ci/azure-pipelines-main.yml +++ b/.ci/azure-pipelines-main.yml @@ -91,3 +91,10 @@ jobs: inputs: targetPath: '$(build.ArtifactStagingDirectory)/Jellyfin.Server/MediaBrowser.Common.dll' artifactName: 'Jellyfin.Common' + + - task: PublishPipelineArtifact@1 + displayName: 'Publish Artifact Extensions' + condition: and(succeeded(), eq(variables['BuildConfiguration'], 'Release')) + inputs: + targetPath: '$(build.ArtifactStagingDirectory)/Jellyfin.Server/Jellyfin.Extensions.dll' + artifactName: 'Jellyfin.Extensions' diff --git a/.ci/azure-pipelines.yml b/.ci/azure-pipelines.yml index 4e8b6557b..98d9f3248 100644 --- a/.ci/azure-pipelines.yml +++ b/.ci/azure-pipelines.yml @@ -57,6 +57,9 @@ jobs: Common: NugetPackageName: Jellyfin.Common AssemblyFileName: MediaBrowser.Common.dll + Extensions: + NugetPackageName: Jellyfin.Extensions + AssemblyFileName: Jellyfin.Extensions.dll LinuxImage: 'ubuntu-latest' - ${{ if or(startsWith(variables['Build.SourceBranch'], 'refs/tags/v'), startsWith(variables['Build.SourceBranch'], 'refs/heads/master')) }}: |
