use new s3 upload secrets

This commit is contained in:
Michael Barz
2023-07-06 15:33:31 +02:00
parent 1b4fbd2e9f
commit 41867f7e16
+4 -4
View File
@@ -1438,16 +1438,16 @@ def binaryRelease(ctx, name):
settings = {
"endpoint": {
"from_secret": "s3_endpoint",
"from_secret": "upload_s3_endpoint",
},
"access_key": {
"from_secret": "aws_access_key_id",
"from_secret": "upload_s3_access_key",
},
"secret_key": {
"from_secret": "aws_secret_access_key",
"from_secret": "upload_s3_secret_key",
},
"bucket": {
"from_secret": "s3_bucket",
"from_secret": "upload_s3_bucket",
},
"path_style": True,
"strip_prefix": "ocis/dist/release/",