Skip to content

Commit 854dcfa

Browse files
author
sand4rt
committed
added included files to upload
1 parent 33d6e39 commit 854dcfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3114,7 +3114,7 @@ new FtpDeploy()
31143114
remoteRoot: core.getInput('remote_folder') || './',
31153115
localRoot: core.getInput('local_folder') || 'dist', // __dirname + '/local-folder',
31163116
deleteRemote: JSON.parse(core.getInput('cleanup')) || false, // If true, delete ALL existing files at destination before uploading
3117-
include: JSON.parse(core.getInput('include')) || [], // this would upload everything except dot files
3117+
include: JSON.parse(core.getInput('include')) || ['*', '**/*'], // this would upload everything except dot files
31183118
exclude: JSON.parse(core.getInput('exclude')) || ['node_modules/**', 'node_modules/**/.*', '.git/**'], // e.g. exclude sourcemaps, and ALL files in node_modules (including dot files)
31193119
forcePasv: JSON.parse(core.getInput('pasive')) || true // Passive mode is forced (EPSV command is not sent)
31203120
})

0 commit comments

Comments
 (0)