From 394d76d402cd439a2093fce4977963a3220f570e Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 28 Nov 2022 00:11:06 +0000 Subject: [PATCH] Update Azure Pipelines download step --- azure-pipelines.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index cde9556..2a07f02 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -138,15 +138,12 @@ jobs: - macosx condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/')) steps: - - task: DownloadBuildArtifacts@0 - displayName: 'Download build artifacts' - inputs: - downloadType: specific - parallelizationLimit: 12 + - download: current + patterns: '**/*.dll' - task: GitHubRelease@1 displayName: 'Publish GitHub release $(build.sourceBranchName)' inputs: gitHubConnection: 'GitHub danielga' releaseNotesSource: inline - assets: '$(System.ArtifactsDirectory)/**' + assets: '$(Pipeline.Workspace)/**/*.dll' addChangeLog: false