记一下 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
其他
- https://shadynagy.com/gitHub-action-deploy-linux
- https://blog.benoitblanchon.fr/github-action-run-ssh-commands/
- https://laogen.site/github-actions/ssh-deploy/
- https://aimuke.github.io/linux/2020/10/20/run-command-by-ssh/?hmsr=joyk.com&utm_source=joyk.com&utm_medium=referral
调试