Skip to content

Commit

Permalink
Allow setting the timeout.
Browse files Browse the repository at this point in the history
  • Loading branch information
unverbraucht committed Apr 19, 2022
1 parent d0aa838 commit 4f0dc29
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ async function runDeployment() {
"dangerous-clean-slate": optionalBoolean("dangerous-clean-slate", core.getInput("dangerous-clean-slate")),
"exclude": optionalStringArray("exclude", core.getMultilineInput("exclude")),
"log-level": optionalLogLevel("log-level", core.getInput("log-level")),
"security": optionalSecurity("security", core.getInput("security"))
"security": optionalSecurity("security", core.getInput("security")),
"timeout": optionalInt("timeout", core.getInput("timeout"))
};

await deploy(args);
Expand Down

0 comments on commit 4f0dc29

Please sign in to comment.