|
|
@ -15852,10 +15852,12 @@ function getInputS3ClientConfig() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const s3config = {
|
|
|
|
const s3config = {
|
|
|
|
credentials: {
|
|
|
|
credentials: {
|
|
|
|
accessKeyId: core.getInput(constants_1.Inputs.AWSAccessKeyId),
|
|
|
|
accessKeyId: core.getInput(constants_1.Inputs.AWSAccessKeyId) ||
|
|
|
|
secretAccessKey: core.getInput(constants_1.Inputs.AWSSecretAccessKey)
|
|
|
|
process.env["AWS_ACCESS_KEY_ID"],
|
|
|
|
|
|
|
|
secretAccessKey: core.getInput(constants_1.Inputs.AWSSecretAccessKey) ||
|
|
|
|
|
|
|
|
process.env["AWS_SECRET_ACCESS_KEY"]
|
|
|
|
},
|
|
|
|
},
|
|
|
|
region: core.getInput(constants_1.Inputs.AWSRegion),
|
|
|
|
region: core.getInput(constants_1.Inputs.AWSRegion) || process.env["AWS_REGION"],
|
|
|
|
endpoint: core.getInput(constants_1.Inputs.AWSEndpoint),
|
|
|
|
endpoint: core.getInput(constants_1.Inputs.AWSEndpoint),
|
|
|
|
bucketEndpoint: core.getBooleanInput(constants_1.Inputs.AWSS3BucketEndpoint),
|
|
|
|
bucketEndpoint: core.getBooleanInput(constants_1.Inputs.AWSS3BucketEndpoint),
|
|
|
|
forcePathStyle: core.getBooleanInput(constants_1.Inputs.AWSS3ForcePathStyle)
|
|
|
|
forcePathStyle: core.getBooleanInput(constants_1.Inputs.AWSS3ForcePathStyle)
|
|
|
|