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