deploy test artifacts to the correct bucket prefix (#3061)

This commit is contained in:
Russel Waters 2020-12-04 10:30:14 -08:00 committed by GitHub
commit 39632304d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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