Skip to content

Commit

Permalink
release 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
say8425 committed Nov 26, 2019
1 parent c51249b commit 65a1a4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,12 +209,12 @@ async function getSecretValue (secretsManager, secretName) {
}

getSecretValue(secretsManager, secretName).then(resp => {
core.setSecret(resp.SecretString)
const secret = resp.SecretString

if (secret) {
const parsedSecret = JSON.parse(secret)
Object.entries(parsedSecret).forEach(([key, value]) => {
core.setSecret(value)
core.exportVariable(key, value)
})
} else {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aws-secrets-manager-actions",
"version": "0.9.4",
"version": "0.10.0",
"description": "GitHub Actions for AWS Secrets Manager",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 65a1a4e

Please sign in to comment.