CI : FTP -> SFTP connection

This commit is contained in:
isUnknown 2025-07-30 15:40:47 +02:00
parent b74a8caa09
commit f52c26f0df

View file

@ -34,7 +34,7 @@ build and deploy:
script:
- echo "test" > test.txt
- lftp -c "
set ftp:ssl-allow no;
open -u $USERNAME,$PASSWORD $HOST;
set sftp:auto-confirm yes;
open -u $USERNAME,$PASSWORD sftp://$HOST;
put -O / test.txt;
quit"