release-download.yml 549 B

12345678910111213141516
  1. # SPDX-FileCopyrightText: 2019 yuzu Emulator Project
  2. # SPDX-License-Identifier: GPL-2.0-or-later
  3. steps:
  4. - task: DownloadPipelineArtifact@2
  5. displayName: 'Download Windows Release'
  6. inputs:
  7. artifactName: 'yuzu-$(BuildName)-windows-msvc'
  8. buildType: 'current'
  9. targetPath: '$(Build.ArtifactStagingDirectory)'
  10. - task: DownloadPipelineArtifact@2
  11. displayName: 'Download Linux Release'
  12. inputs:
  13. artifactName: 'yuzu-$(BuildName)-linux'
  14. buildType: 'current'
  15. targetPath: '$(Build.ArtifactStagingDirectory)'