We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17aaaac commit eacee26Copy full SHA for eacee26
tasks/publish-to-aws.js
@@ -90,8 +90,8 @@ module.exports = function (grunt) {
90
function s3PutObject(uploadParams) {
91
const s3 = new S3({
92
credentials: {
93
- accessKeyId: key,
94
- secretAccessKey: secret,
+ accessKeyId: process.env.S3_ACCESS_KEY_ID,
+ secretAccessKey: process.env.S3_SECRET_ACCESS_KEY,
95
},
96
});
97
return new Promise((resolve, reject) => {
0 commit comments