使用WINSCP自动上传更新网站
一 建立一个TXT文件用来存储 winscp 指令
open [email protected] -password=123456
option confirm off
cd /data/web/h5
put Z:\h5\* -neweronly
exit
二 建立一个cmd 来执行这个文本
dotnet publish -c release -r linux-x64 --self-contained=true -o z:\h5
#set http_proxy=http://127.0.0.1:20801
#set https_proxy=http://127.0.0.1:20801
c:/winscp/winscp.com /script=publish_to_server_ssh_commands.txt
三 如果有需要,可以在 txt 指令表里加入"停止服务","启动服务"等指令
call systemctl stop aaweb.service
....
call systemctl start aaweb.service