From 39632304d3c080ab24399b9f5482980fcf2c7ea3 Mon Sep 17 00:00:00 2001 From: Russel Waters Date: Fri, 4 Dec 2020 10:30:14 -0800 Subject: [PATCH] deploy test artifacts to the correct bucket prefix (#3061) --- ci/actions/windows/deploy.ps1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/actions/windows/deploy.ps1 b/ci/actions/windows/deploy.ps1 index 4f71b5ca..3fb6a9c1 100644 --- a/ci/actions/windows/deploy.ps1 +++ b/ci/actions/windows/deploy.ps1 @@ -3,6 +3,9 @@ $ErrorActionPreference = "Continue" if ( ${env:BETA} -eq 1 ) { $network_cfg = "beta" } +elseif ( ${env:TEST} -eq 1 ) { + $network_cfg = "test" +} else { $network_cfg = "live" }