Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
SamKirkland committed Aug 26, 2020
1 parent 6d051eb commit 9e3379f
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,17 @@ async function runDeployment() {
const args = {
server: core.getInput("server", { required: true }),
username: core.getInput("username", { required: true }),
password: core.getInput("password", { required: true })
password: core.getInput("password", { required: true }),
protocol: core.getInput("protocol"),
port: core.getInput("port"),
"local-dir": core.getInput("local-dir"),
"server-dir": core.getInput("server-dir"),
"state-name": core.getInput("state-name"),
"dry-run": core.getInput("dry-run"),
"dangerous-clean-slate": core.getInput("dangerous-clean-slate"),
"include": core.getInput("include"),
"exclude": core.getInput("exclude"),
"log-level": core.getInput("log-level") // todo fix
};
try {
await ftp_deploy_1.deploy(args);
Expand Down

0 comments on commit 9e3379f

Please sign in to comment.