Compare commits

4 Commits
v4.3.1 ... beta

Author SHA1 Message Date
SamKirkland
ec28745b59 blue marketplace icon 2022-09-03 17:40:42 -05:00
SamKirkland
1b21034a8d v4.3.2 2022-09-03 17:37:57 -05:00
Sam Kirkland
ed91728692 Merge pull request #317 from Marvimoto/patch-1
Add timeout to valid inputs to resolve #316
2022-08-30 09:06:05 -05:00
Marvimoto
118eb423de Add timeout to valid inputs 2022-08-29 19:14:03 +02:00
4 changed files with 13 additions and 10 deletions

View File

@@ -23,7 +23,7 @@ jobs:
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: 📂 Sync files - name: 📂 Sync files
uses: SamKirkland/FTP-Deploy-Action@4.3.1 uses: SamKirkland/FTP-Deploy-Action@4.3.2
with: with:
server: ftp.samkirkland.com server: ftp.samkirkland.com
username: myFtpUserName username: myFtpUserName
@@ -99,7 +99,7 @@ jobs:
npm run build npm run build
- name: 📂 Sync files - name: 📂 Sync files
uses: SamKirkland/FTP-Deploy-Action@4.3.1 uses: SamKirkland/FTP-Deploy-Action@4.3.2
with: with:
server: ftp.samkirkland.com server: ftp.samkirkland.com
username: myFtpUserName username: myFtpUserName
@@ -119,7 +119,7 @@ jobs:
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: 📂 Sync files - name: 📂 Sync files
uses: SamKirkland/FTP-Deploy-Action@4.3.1 uses: SamKirkland/FTP-Deploy-Action@4.3.2
with: with:
server: ftp.samkirkland.com server: ftp.samkirkland.com
username: myFtpUserName username: myFtpUserName
@@ -142,7 +142,7 @@ jobs:
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: 📂 Sync files - name: 📂 Sync files
uses: SamKirkland/FTP-Deploy-Action@4.3.1 uses: SamKirkland/FTP-Deploy-Action@4.3.2
with: with:
server: ftp.samkirkland.com server: ftp.samkirkland.com
username: myFtpUserName username: myFtpUserName
@@ -164,7 +164,7 @@ jobs:
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: 📂 Sync files - name: 📂 Sync files
uses: SamKirkland/FTP-Deploy-Action@4.3.1 uses: SamKirkland/FTP-Deploy-Action@4.3.2
with: with:
server: ftp.samkirkland.com server: ftp.samkirkland.com
username: myFtpUserName username: myFtpUserName

View File

@@ -41,9 +41,12 @@ inputs:
security: security:
required: false required: false
description: "strict or loose" description: "strict or loose"
timeout:
required: false
description: "Timeout in milliseconds for FTP operations"
runs: runs:
using: "node12" using: "node12"
main: "dist/index.js" main: "dist/index.js"
branding: branding:
icon: "upload-cloud" icon: "upload-cloud"
color: "orange" color: "blue"

View File

@@ -1,3 +0,0 @@
module.exports = {
preset: "ts-jest"
};

View File

@@ -1,6 +1,6 @@
{ {
"name": "ftp-deploy-action", "name": "ftp-deploy-action",
"version": "4.3.1", "version": "4.3.2",
"private": true, "private": true,
"description": "Automate deploying websites and more with this GitHub action", "description": "Automate deploying websites and more with this GitHub action",
"main": "dist/index.js", "main": "dist/index.js",
@@ -37,5 +37,8 @@
"eslint": "^8.22.0", "eslint": "^8.22.0",
"eslint-plugin-jest": "^26.8.7", "eslint-plugin-jest": "^26.8.7",
"typescript": "^4.7.4" "typescript": "^4.7.4"
},
"jest": {
"preset": "ts-jest"
} }
} }