Is there any other github action besides appleboy/ssh-action, that not using Docker, for SSH Execute Commands
Is there any other github action besides appleboy/ssh-action, that not using Docker, for SSH Execute Commands
There does not seem to be one, which means you would need to make a custom action yourself.
As illustrated in "Custom GitHub Actions in Go Without Docker" by Steve Yackey, you can do so, using Go to create an SSH connection and execute commands.
This is one example of such an approach.