Skip to content

Commit 63b04d6

Browse files
committed
updated ftp-deploy with dryrun patch
1 parent 928e32c commit 63b04d6

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1991,7 +1991,7 @@ function createFolder(client, folderPath, logger, timings, dryRun) {
19911991
var _a;
19921992
return __awaiter(this, void 0, void 0, function* () {
19931993
logger.all(`creating folder "${folderPath + "/"}"`);
1994-
if (dryRun === false) {
1994+
if (dryRun === true) {
19951995
return;
19961996
}
19971997
const path = getFileBreadcrumbs(folderPath + "/");

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ftp-deploy-action",
3-
"version": "1.0.1",
3+
"version": "4.0.0",
44
"private": true,
55
"description": "Automate deploying websites and more with this GitHub action",
66
"main": "dist/index.js",
@@ -22,7 +22,7 @@
2222
"license": "MIT",
2323
"dependencies": {
2424
"@actions/core": "^1.2.6",
25-
"@samkirkland/ftp-deploy": "^0.9.7",
25+
"@samkirkland/ftp-deploy": "^1.0.0",
2626
"ts-node-dev": "^1.0.0-pre.62"
2727
},
2828
"devDependencies": {

0 commit comments

Comments
 (0)