v4.2.0 beta

- fixes for 550 folder issue
- updated excludes option format
This commit is contained in:
SamKirkland
2021-10-13 01:18:45 -05:00
parent 65c6a8f943
commit ba86a1bf13
8 changed files with 2124 additions and 2427 deletions

View File

@@ -16,14 +16,14 @@ async function runDeployment() {
"state-name": optionalString(core.getInput("state-name")),
"dry-run": optionalBoolean("dry-run", core.getInput("dry-run")),
"dangerous-clean-slate": optionalBoolean("dangerous-clean-slate", core.getInput("dangerous-clean-slate")),
"exclude": optionalStringArray("exclude", core.getInput("exclude")),
"exclude": optionalStringArray("exclude", core.getMultilineInput("exclude")),
"log-level": optionalLogLevel("log-level", core.getInput("log-level")),
"security": optionalSecurity("security", core.getInput("security"))
};
await deploy(args);
}
catch (error) {
catch (error: any) {
core.setFailed(error);
}
}