build: change upload-to-s3 vars to upload-to-storage (#34105)
* build: change upload-to-s3 vars to upload-to-az * build: change upload-to-az to upload-to-storage
This commit is contained in:
parent
dd7dfd7ecd
commit
6fea35271c
5 changed files with 28 additions and 29 deletions
|
@ -62,9 +62,9 @@ async function circleCIcall (targetBranch, workflowName, options) {
|
|||
parameters: {}
|
||||
};
|
||||
if (options.ghRelease) {
|
||||
buildRequest.parameters['upload-to-s3'] = '0';
|
||||
buildRequest.parameters['upload-to-storage'] = '0';
|
||||
} else {
|
||||
buildRequest.parameters['upload-to-s3'] = '1';
|
||||
buildRequest.parameters['upload-to-storage'] = '1';
|
||||
}
|
||||
buildRequest.parameters[`run-${workflowName}`] = true;
|
||||
if (options.arch) {
|
||||
|
@ -205,7 +205,7 @@ async function callAppVeyor (targetBranch, job, options) {
|
|||
};
|
||||
|
||||
if (!options.ghRelease) {
|
||||
environmentVariables.UPLOAD_TO_S3 = 1;
|
||||
environmentVariables.UPLOAD_TO_STORAGE = 1;
|
||||
}
|
||||
|
||||
const requestOpts = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue