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" }