Configurable region
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Fabian Stamm 2020-10-14 17:44:36 +02:00
parent 7e821f9771
commit 10a7c26642
1 changed files with 3 additions and 0 deletions

View File

@ -40,6 +40,9 @@ for (const key in env) {
case "S3_SECRET":
config.s3 = { ...(config.s3 || {}), secretKey: env[key] };
break;
case "S3_REGION":
config.s3 = { ...(config.s3 || {}), region: env[key] };
break;
}
}
}