Skip to content

Github Actions 远程 SSH 和 SCP 操作

Published: at 08:06 AMSuggest Changes

记一下 Github Action Remote SSH SCP

仓库

替代方案

SCP 命令行

mkdir -p ~/.ssh
echo "${{ secrets.SSH_KEY }}" > ~/.ssh/id_rsa
chmod 700 ~/.ssh/id_rsa
ssh-keyscan -H 119.28.92.99 >> ~/.ssh/known_hosts
scp -o StrictHostKeyChecking=no -r ./public.zip root@119.28.92.99:/root/test/public.zip

SSH 命令行

单个命令

ssh user1@server1 command1
ssh user1@server1 'command2'
# pipe #
ssh user1@server1 'command1 | command2'
# multiple commands (must enclose in quotes #
ssh admin@box1 "command1; command2; command3"

多个命令

ssh server_name < commands.txt
ssh user@server_name < commands.txt
ssh admin@ls.backup < commands.txt

其他

调试


Previous Post
Git 拉取更新使用 LF 格式
Next Post
解决 iOS 输入框页面自动放大问题