Adding SFTP support?
See original GitHub issueBug Description Why is SFTP no longer supported on the latest version? I know you can use a previous version to use SFTP but I’d prefer to use the latest version with SFTP.
My Action Config
on: push
name: Publish Website
jobs:
- name: Deploy resources
uses: SamKirkland/FTP-Deploy-Action@4.1.0
with:
local-dir: PlayerWarps-Plugin/src/main/resources/configuration/
server-dir: /var/www/html/playerwarps/configuration/
server: cdn.olziedev.com
username: ${{secrets.FTP_USERNAME_CDN}}
password: ${{secrets.FTP_PASSWORD_CDN}}
port: 2022
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
Add-on:SFTP support - Official Kodi Wiki
This add-on is installed from the Add-on browser located in Kodi as follows: Settings; Add-ons; Install from repository; VFS; SFTP support ...
Read more >Configure an SFTP server on Windows - 4sysops
In this post, I will demonstrate how to configure an SFTP server in ... FTP with the added support of a TLS certificate...
Read more >How Do I Configure SFTP? - Integrate.io
In the Control Panel, navigate to the Windows Defender Firewall. Click on “Advanced settings” in the left panel to open a new pop-up...
Read more >File Transfer Protocol (FTP/SFTP) - Support Center - WP Engine
Add SFTP User · Log in to the User Portal · Select the environment you wish to connect to · Click SFTP Users...
Read more >How to set up an SFTP Server in Windows - V2 Cloud
Type services in the search bar. Then click the Services Desktop app. Locate the OpenSSH SSH Server option from the list. Right-click it,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
For googlers… I needed SFTP, but un/pw only, no SSH keys. So I switched to https://github.com/wangyucode/sftp-upload-action
@nicoduesing SFTP uses a SSH connection under the hood. FTPS uses FTP over a SSL connection.
I’m not aware of any hosts that offer only SFTP client access without SFTP. They might be accomplishing that via a restricted SSH account.
Overall you’re correct, depending on the host you might not be able to use rsync. I still think supporting raw FTP and rsync is the best path forward.