Skip to content

Commit

Permalink
Fix deployer options setting
Browse files Browse the repository at this point in the history
  • Loading branch information
martynasbakanas authored Nov 22, 2023
1 parent 06aeb29 commit a511f69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ async function dep() {
try {
let optionsArg = core.getInput('options')
if (optionsArg !== '') {
for (let [key, value] in Object.entries(JSON.parse(optionsArg))) {
for (let [key, value] of Object.entries(JSON.parse(optionsArg))) {
options.push('-o', `${key}=${value}`)
}
}
Expand Down

0 comments on commit a511f69

Please sign in to comment.