From a86e52a3751405920a2b93d4cd8f5ec0ef62bf2f Mon Sep 17 00:00:00 2001
From: Zach Hilman <zachhilman@gmail.com>
Date: Wed, 2 Oct 2019 18:54:05 -0400
Subject: [PATCH] ci: Correct mainline release dependency

---
 .ci/templates/release-download.yml | 2 +-
 .ci/yuzu-mainline-step2.yml        | 4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/.ci/templates/release-download.yml b/.ci/templates/release-download.yml
index 50ca06bb25..f7e30690f4 100644
--- a/.ci/templates/release-download.yml
+++ b/.ci/templates/release-download.yml
@@ -2,7 +2,7 @@ steps:
   - task: DownloadPipelineArtifact@2
     displayName: 'Download Windows Release'
     inputs:
-      artifactName: 'yuzu-$(BuildName)-windows-mingw'
+      artifactName: 'yuzu-$(BuildName)-windows-msvc'
       buildType: 'current'
       targetPath: '$(Build.ArtifactStagingDirectory)'
   - task: DownloadPipelineArtifact@2
diff --git a/.ci/yuzu-mainline-step2.yml b/.ci/yuzu-mainline-step2.yml
index 1c9b59a029..0c1af397b6 100644
--- a/.ci/yuzu-mainline-step2.yml
+++ b/.ci/yuzu-mainline-step2.yml
@@ -53,7 +53,9 @@ stages:
         cache: 'true'
 - stage: release
   displayName: 'Release'
-  dependsOn: build
+  dependsOn:
+  - build
+  - build_win
   jobs:
   - job: github
     displayName: 'GitHub Release'