From 388c136f609dd375315ec10a1cf8cc9d3cbc55d6 Mon Sep 17 00:00:00 2001 From: Matt Jeanes Date: Sat, 7 Mar 2020 21:12:11 +0000 Subject: [PATCH] Update publish-job.yml for Azure Pipelines --- .azuredevops/pipelines/publish-job.yml | 71 +++++++++++++------------- 1 file changed, 36 insertions(+), 35 deletions(-) diff --git a/.azuredevops/pipelines/publish-job.yml b/.azuredevops/pipelines/publish-job.yml index 55ce532d9..b6978f62a 100644 --- a/.azuredevops/pipelines/publish-job.yml +++ b/.azuredevops/pipelines/publish-job.yml @@ -12,41 +12,42 @@ stages: - template: templates/build-steps.yml - stage: publish -- template: templates/publish-os-steps.yml - parameters: - name: 'Win10x64' - Runtime: win10-x64 - OutputName: win-64 - -- template: templates/publish-os-steps.yml - parameters: - name: 'Win10x86' - Runtime: win10-x86 - OutputName: win-86 - -- template: templates/publish-os-steps.yml - parameters: - name: 'OSXx64' - Runtime: osx-x64 - OutputName: osx-64 - -- template: templates/publish-os-steps.yml - parameters: - name: 'Linuxx64' - Runtime: linux-x64 - OutputName: linux-64 - -- template: templates/publish-os-steps.yml - parameters: - name: 'LinuxARM' - Runtime: linux-arm - OutputName: linux-arm - -- template: templates/publish-os-steps.yml - parameters: - name: 'LinuxARMx64' - Runtime: linux-arm64 - OutputName: linux-arm64 + jobs: + - template: templates/publish-os-steps.yml + parameters: + name: 'Win10x64' + Runtime: win10-x64 + OutputName: win-64 + + - template: templates/publish-os-steps.yml + parameters: + name: 'Win10x86' + Runtime: win10-x86 + OutputName: win-86 + + - template: templates/publish-os-steps.yml + parameters: + name: 'OSXx64' + Runtime: osx-x64 + OutputName: osx-64 + + - template: templates/publish-os-steps.yml + parameters: + name: 'Linuxx64' + Runtime: linux-x64 + OutputName: linux-64 + + - template: templates/publish-os-steps.yml + parameters: + name: 'LinuxARM' + Runtime: linux-arm + OutputName: linux-arm + + - template: templates/publish-os-steps.yml + parameters: + name: 'LinuxARMx64' + Runtime: linux-arm64 + OutputName: linux-arm64 # - task: GitHubRelease@1