Skip to content

Commit

Permalink
Fixes dryrun logic
Browse files Browse the repository at this point in the history
  • Loading branch information
miagao committed Feb 5, 2024
1 parent 647a516 commit 3999e4c
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 @@ -216,7 +216,7 @@ async function run() {
process.env.HELM_HOME = "/root/.helm/"
}

if (dryRun) args.push("--dry-run");
if (dryRun === true) args.push("--dry-run");
if (appName) args.push(`--set=app.name=${appName}`);
if (version) args.push(`--set=app.version=${version}`);
if (chartVersion) args.push(`--version=${chartVersion}`);
Expand Down

0 comments on commit 3999e4c

Please sign in to comment.