Skip to content

Commit

Permalink
added included files to upload
Browse files Browse the repository at this point in the history
  • Loading branch information
sand4rt committed Sep 9, 2020
1 parent 33d6e39 commit 854dcfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3114,7 +3114,7 @@ new FtpDeploy()
remoteRoot: core.getInput('remote_folder') || './',
localRoot: core.getInput('local_folder') || 'dist', // __dirname + '/local-folder',
deleteRemote: JSON.parse(core.getInput('cleanup')) || false, // If true, delete ALL existing files at destination before uploading
include: JSON.parse(core.getInput('include')) || [], // this would upload everything except dot files
include: JSON.parse(core.getInput('include')) || ['*', '**/*'], // this would upload everything except dot files
exclude: JSON.parse(core.getInput('exclude')) || ['node_modules/**', 'node_modules/**/.*', '.git/**'], // e.g. exclude sourcemaps, and ALL files in node_modules (including dot files)
forcePasv: JSON.parse(core.getInput('pasive')) || true // Passive mode is forced (EPSV command is not sent)
})
Expand Down

0 comments on commit 854dcfa

Please sign in to comment.