From 2c7dd48cd28018e7d9270a9eb52401b9fb2755cf Mon Sep 17 00:00:00 2001 From: Nick Marazzo Date: Thu, 22 Apr 2021 16:09:35 -0700 Subject: [PATCH] Update sftp.js --- sftp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sftp.js b/sftp.js index a9505c5..4505233 100644 --- a/sftp.js +++ b/sftp.js @@ -21,7 +21,7 @@ let options = { excludeMode: JSON.parse(core.getInput('excludeMode')), // Behavior for excluded files ('remove' or 'ignore'), Default to 'remove'. forceUpload: JSON.parse(core.getInput('forceUpload')), // Force uploading all files, Default to false(upload only newer files). exclude: JSON.parse(core.getInput('exclude')), // exclude patterns (glob) - concurrency: JSON.parse(core.getInput('exclude')) + concurrency: JSON.parse(core.getInput('concurrency')) }; console.log('sftp options:', options)