mirror of
				https://github.com/SamKirkland/FTP-Deploy-Action.git
				synced 2025-11-03 23:53:59 +00:00 
			
		
		
		
	
						commit
						52decd5354
					
				
							
								
								
									
										16
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										16
									
								
								README.md
									
									
									
									
									
								
							@ -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.2
 | 
					      uses: SamKirkland/FTP-Deploy-Action@4.3.3
 | 
				
			||||||
      with:
 | 
					      with:
 | 
				
			||||||
        server: ftp.samkirkland.com
 | 
					        server: ftp.samkirkland.com
 | 
				
			||||||
        username: myFtpUserName
 | 
					        username: myFtpUserName
 | 
				
			||||||
@ -70,7 +70,7 @@ I strongly recommend you store your `password` as a secret.
 | 
				
			|||||||
| `exclude`               | No       | [See Example](#exclude-files) | [See Example](#exclude-files) | An array of glob patterns, these files will not be included in the publish/delete process. [List MUST be in this format](#exclude-files). You can use [a glob tester](https://www.digitalocean.com/community/tools/glob?comments=true&glob=%2A%2A%2F.git%2A%2F%2A%2A&matches=false&tests=test%2Fsam&tests=.git%2F&tests=.github%2F&tests=.git%2Ftest&tests=.gitattributes&tests=.gitignore&tests=.git%2Fconfig&tests=.git%2Ftest%2Ftest&tests=.github%2Fworkflows%2Fmain.yml&tests=test%2F.git%2Fworkflows%2Fmain.yml&tests=node_modules%2Ffolder%2F&tests=node_modules%2Fotherfolder%2F&tests=subfolder%2Fnode_modules%2F) to test your pattern(s). |
 | 
					| `exclude`               | No       | [See Example](#exclude-files) | [See Example](#exclude-files) | An array of glob patterns, these files will not be included in the publish/delete process. [List MUST be in this format](#exclude-files). You can use [a glob tester](https://www.digitalocean.com/community/tools/glob?comments=true&glob=%2A%2A%2F.git%2A%2F%2A%2A&matches=false&tests=test%2Fsam&tests=.git%2F&tests=.github%2F&tests=.git%2Ftest&tests=.gitattributes&tests=.gitignore&tests=.git%2Fconfig&tests=.git%2Ftest%2Ftest&tests=.github%2Fworkflows%2Fmain.yml&tests=test%2F.git%2Fworkflows%2Fmain.yml&tests=node_modules%2Ffolder%2F&tests=node_modules%2Fotherfolder%2F&tests=subfolder%2Fnode_modules%2F) to test your pattern(s). |
 | 
				
			||||||
| `log-level`             | No       | `minimal`                     | `standard`                    | `minimal`: only important info, `standard`: important info and basic file changes, `verbose`: print everything the script is doing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
 | 
					| `log-level`             | No       | `minimal`                     | `standard`                    | `minimal`: only important info, `standard`: important info and basic file changes, `verbose`: print everything the script is doing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
 | 
				
			||||||
| `security`              | No       | `strict`                      | `loose`                       | `strict`: Reject any connection which is not authorized with the list of supplied CAs. `loose`: Allow connection even when the domain is not certificate                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
 | 
					| `security`              | No       | `strict`                      | `loose`                       | `strict`: Reject any connection which is not authorized with the list of supplied CAs. `loose`: Allow connection even when the domain is not certificate                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
 | 
				
			||||||
| `timeout`               | No       | `30000`                       | `60000`                       | Timeout in milliseconds for FTP operations                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
 | 
					| `timeout`               | No       | `60000`                       | `30000`                       | Timeout in milliseconds for FTP operations                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Common Examples
 | 
					# Common Examples
 | 
				
			||||||
@ -88,10 +88,10 @@ jobs:
 | 
				
			|||||||
    - name: 🚚 Get latest code
 | 
					    - name: 🚚 Get latest code
 | 
				
			||||||
      uses: actions/checkout@v2
 | 
					      uses: actions/checkout@v2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    - name: Use Node.js 14
 | 
					    - name: Use Node.js 16
 | 
				
			||||||
      uses: actions/setup-node@v2
 | 
					      uses: actions/setup-node@v2
 | 
				
			||||||
      with:
 | 
					      with:
 | 
				
			||||||
        node-version: '14'
 | 
					        node-version: '16'
 | 
				
			||||||
      
 | 
					      
 | 
				
			||||||
    - name: 🔨 Build Project
 | 
					    - name: 🔨 Build Project
 | 
				
			||||||
      run: |
 | 
					      run: |
 | 
				
			||||||
@ -99,7 +99,7 @@ jobs:
 | 
				
			|||||||
        npm run build
 | 
					        npm run build
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
    - name: 📂 Sync files
 | 
					    - name: 📂 Sync files
 | 
				
			||||||
      uses: SamKirkland/FTP-Deploy-Action@4.3.2
 | 
					      uses: SamKirkland/FTP-Deploy-Action@4.3.3
 | 
				
			||||||
      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.2
 | 
					      uses: SamKirkland/FTP-Deploy-Action@4.3.3
 | 
				
			||||||
      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.2
 | 
					      uses: SamKirkland/FTP-Deploy-Action@4.3.3
 | 
				
			||||||
      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.2
 | 
					      uses: SamKirkland/FTP-Deploy-Action@4.3.3
 | 
				
			||||||
      with:
 | 
					      with:
 | 
				
			||||||
        server: ftp.samkirkland.com
 | 
					        server: ftp.samkirkland.com
 | 
				
			||||||
        username: myFtpUserName
 | 
					        username: myFtpUserName
 | 
				
			||||||
 | 
				
			|||||||
@ -45,7 +45,7 @@ inputs:
 | 
				
			|||||||
    required: false
 | 
					    required: false
 | 
				
			||||||
    description: "Timeout in milliseconds for FTP operations"
 | 
					    description: "Timeout in milliseconds for FTP operations"
 | 
				
			||||||
runs:
 | 
					runs:
 | 
				
			||||||
  using: "node12"
 | 
					  using: "node16"
 | 
				
			||||||
  main: "dist/index.js"
 | 
					  main: "dist/index.js"
 | 
				
			||||||
branding:
 | 
					branding:
 | 
				
			||||||
  icon: "upload-cloud"
 | 
					  icon: "upload-cloud"
 | 
				
			||||||
 | 
				
			|||||||
@ -1,6 +1,6 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "name": "ftp-deploy-action",
 | 
					  "name": "ftp-deploy-action",
 | 
				
			||||||
  "version": "4.3.2",
 | 
					  "version": "4.3.3",
 | 
				
			||||||
  "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",
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user