Skip to content

Commit 566f199

Browse files
committed
fix(brew): work on getting aws creds to validate
1 parent 88f8c1e commit 566f199

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

release/scripts/homebrew.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ async function uploadToS3(file) {
7878
}
7979
});
8080
fileStream.on('open', () => {
81-
const S3 = new AWS.S3()
81+
console.log(AWS.config.credentials)
82+
const S3 = new AWS.S3({ credentials: AWS.config.credentials })
8283
S3.putObject({
8384
Bucket: PJSON.oclif.update.s3.bucket,
8485
Key: `cg-v${SHORT_VERSION}/${file}`,

0 commit comments

Comments
 (0)