2022-05-15 02:06:02 +02:00
|
|
|
# SPDX-FileCopyrightText: 2019 yuzu Emulator Project
|
|
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
2019-09-22 16:01:29 -04:00
|
|
|
steps:
|
|
|
|
|
- task: DownloadPipelineArtifact@2
|
|
|
|
|
displayName: 'Download Windows Release'
|
|
|
|
|
inputs:
|
2019-10-02 18:54:05 -04:00
|
|
|
artifactName: 'yuzu-$(BuildName)-windows-msvc'
|
2019-09-22 16:01:29 -04:00
|
|
|
buildType: 'current'
|
|
|
|
|
targetPath: '$(Build.ArtifactStagingDirectory)'
|
|
|
|
|
- task: DownloadPipelineArtifact@2
|
|
|
|
|
displayName: 'Download Linux Release'
|
|
|
|
|
inputs:
|
|
|
|
|
artifactName: 'yuzu-$(BuildName)-linux'
|
|
|
|
|
buildType: 'current'
|
|
|
|
|
targetPath: '$(Build.ArtifactStagingDirectory)'
|