Skip to content

Commit d08ef15

Browse files
committed
generate
1 parent 5bf8aa0 commit d08ef15

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

dist/restore-only/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -146917,7 +146917,9 @@ function getInputS3ClientConfig() {
146917146917
}
146918146918
}
146919146919
: null;
146920-
const s3config = Object.assign(Object.assign({}, credentials), { region: core.getInput(constants_1.Inputs.AWSRegion) || process.env["AWS_REGION"], endpoint: core.getInput(constants_1.Inputs.AWSEndpoint), bucketEndpoint: core.getBooleanInput(constants_1.Inputs.AWSS3BucketEndpoint), forcePathStyle: core.getBooleanInput(constants_1.Inputs.AWSS3ForcePathStyle) });
146920+
const s3config = Object.assign(Object.assign({}, credentials), { region: core.getInput(constants_1.Inputs.AWSRegion) || process.env["AWS_REGION"], endpoint: core.getInput(constants_1.Inputs.AWSEndpoint) || undefined, bucketEndpoint: core.getInput(constants_1.Inputs.AWSEndpoint)
146921+
? core.getBooleanInput(constants_1.Inputs.AWSS3BucketEndpoint)
146922+
: false, forcePathStyle: core.getBooleanInput(constants_1.Inputs.AWSS3ForcePathStyle) });
146921146923
core.debug("Enable S3 backend mode.");
146922146924
return s3config;
146923146925
}

dist/restore/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -146917,7 +146917,9 @@ function getInputS3ClientConfig() {
146917146917
}
146918146918
}
146919146919
: null;
146920-
const s3config = Object.assign(Object.assign({}, credentials), { region: core.getInput(constants_1.Inputs.AWSRegion) || process.env["AWS_REGION"], endpoint: core.getInput(constants_1.Inputs.AWSEndpoint), bucketEndpoint: core.getBooleanInput(constants_1.Inputs.AWSS3BucketEndpoint), forcePathStyle: core.getBooleanInput(constants_1.Inputs.AWSS3ForcePathStyle) });
146920+
const s3config = Object.assign(Object.assign({}, credentials), { region: core.getInput(constants_1.Inputs.AWSRegion) || process.env["AWS_REGION"], endpoint: core.getInput(constants_1.Inputs.AWSEndpoint) || undefined, bucketEndpoint: core.getInput(constants_1.Inputs.AWSEndpoint)
146921+
? core.getBooleanInput(constants_1.Inputs.AWSS3BucketEndpoint)
146922+
: false, forcePathStyle: core.getBooleanInput(constants_1.Inputs.AWSS3ForcePathStyle) });
146921146923
core.debug("Enable S3 backend mode.");
146922146924
return s3config;
146923146925
}

dist/save-only/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -146936,7 +146936,9 @@ function getInputS3ClientConfig() {
146936146936
}
146937146937
}
146938146938
: null;
146939-
const s3config = Object.assign(Object.assign({}, credentials), { region: core.getInput(constants_1.Inputs.AWSRegion) || process.env["AWS_REGION"], endpoint: core.getInput(constants_1.Inputs.AWSEndpoint), bucketEndpoint: core.getBooleanInput(constants_1.Inputs.AWSS3BucketEndpoint), forcePathStyle: core.getBooleanInput(constants_1.Inputs.AWSS3ForcePathStyle) });
146939+
const s3config = Object.assign(Object.assign({}, credentials), { region: core.getInput(constants_1.Inputs.AWSRegion) || process.env["AWS_REGION"], endpoint: core.getInput(constants_1.Inputs.AWSEndpoint) || undefined, bucketEndpoint: core.getInput(constants_1.Inputs.AWSEndpoint)
146940+
? core.getBooleanInput(constants_1.Inputs.AWSS3BucketEndpoint)
146941+
: false, forcePathStyle: core.getBooleanInput(constants_1.Inputs.AWSS3ForcePathStyle) });
146940146942
core.debug("Enable S3 backend mode.");
146941146943
return s3config;
146942146944
}

dist/save/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -146909,7 +146909,9 @@ function getInputS3ClientConfig() {
146909146909
}
146910146910
}
146911146911
: null;
146912-
const s3config = Object.assign(Object.assign({}, credentials), { region: core.getInput(constants_1.Inputs.AWSRegion) || process.env["AWS_REGION"], endpoint: core.getInput(constants_1.Inputs.AWSEndpoint), bucketEndpoint: core.getBooleanInput(constants_1.Inputs.AWSS3BucketEndpoint), forcePathStyle: core.getBooleanInput(constants_1.Inputs.AWSS3ForcePathStyle) });
146912+
const s3config = Object.assign(Object.assign({}, credentials), { region: core.getInput(constants_1.Inputs.AWSRegion) || process.env["AWS_REGION"], endpoint: core.getInput(constants_1.Inputs.AWSEndpoint) || undefined, bucketEndpoint: core.getInput(constants_1.Inputs.AWSEndpoint)
146913+
? core.getBooleanInput(constants_1.Inputs.AWSS3BucketEndpoint)
146914+
: false, forcePathStyle: core.getBooleanInput(constants_1.Inputs.AWSS3ForcePathStyle) });
146913146915
core.debug("Enable S3 backend mode.");
146914146916
return s3config;
146915146917
}

0 commit comments

Comments
 (0)