aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.azure/azure-pipelines.yml16
1 files changed, 13 insertions, 3 deletions
diff --git a/.azure/azure-pipelines.yml b/.azure/azure-pipelines.yml
index 9fbb97967..3e133290c 100644
--- a/.azure/azure-pipelines.yml
+++ b/.azure/azure-pipelines.yml
@@ -72,7 +72,7 @@ jobs:
displayName: 'Publish Artifact Naming'
condition: eq(variables['BuildConfiguration'], 'Release')
inputs:
- PathtoPublish: '$(build.artifactstagingdirectory)/Jellyfin.Server/MediaBrowser.Naming.dll'
+ PathtoPublish: '$(build.artifactstagingdirectory)/Jellyfin.Server/Emby.Naming.dll'
artifactName: 'Jellyfin.Naming'
- task: PublishBuildArtifacts@1
@@ -126,7 +126,7 @@ jobs:
arguments: 'install $(NugetPackageName) -OutputDirectory $(System.ArtifactsDirectory)/packages -ExcludeVersion -DirectDownload'
- task: CopyFiles@2
- displayName: Copy Nuget Assembly to release folder
+ displayName: Copy Nuget Assembly to current-release folder
inputs:
sourceFolder: $(System.ArtifactsDirectory)/packages/$(NugetPackageName) # Optional
contents: '**/*.dll'
@@ -142,7 +142,17 @@ jobs:
allowPartiallySucceededBuilds: false # Optional
downloadType: 'single' # Options: single, specific
artifactName: '$(NugetPackageName)' # Required when downloadType == Single
- downloadPath: '$(System.ArtifactsDirectory)/new-release'
+ downloadPath: '$(System.ArtifactsDirectory)/new-artifacts'
+
+ - task: CopyFiles@2
+ displayName: Copy Artifact Assembly to new-release folder
+ inputs:
+ sourceFolder: $(System.ArtifactsDirectory)/new-artifacts # Optional
+ contents: '**/*.dll'
+ targetFolder: $(System.ArtifactsDirectory)/new-release
+ cleanTargetFolder: true # Optional
+ overWrite: true # Optional
+ flattenFolders: true # Optional
- task: DownloadGitHubReleases@0
displayName: Download ABI compatibility check tool from GitHub