github-action-ssh icon indicating copy to clipboard operation
github-action-ssh copied to clipboard

🔐 Simple GitHub Action to run commands on a remote server using SSH.

Results 15 github-action-ssh issues
Sort by recently updated
recently updated
newest added

Hi, I reinstalled my server today (I upgraded it to 22.04) and when I wanted to reconfigure an automatic "git pull" on it with github actions, I got the following...

I'm trying to run a script on remote machine. For some reason an action fails. **deploy job** ``` deploy: runs-on: ubuntu-latest needs: build if: github.ref == 'refs/heads/ci-1' steps: - name:...

I'm trying to run a script on remote machine. For some reason an action fails. My workflow looks like this: ```yml - name: Deploy with rsync run: rsync -avz ./...

Hi, i have a remote machine (mac mini). I have connected by ssh and try to do command docker-compose pull & docker-compose up. But gh actions return: command not found:...

How can I pass secrets to the SSH command? Running the following command doesn't output MY_SECRET as an environment variable. Thanks ```yaml - name: Start container services uses: garygrossgarten/github-action-ssh@release env:...

I've had some issues trying to get your action to work with an encrypted ssh key. Unless I'm mistaken, in various places your documentation shows "password" instead of "passphrase". Below...

I know this is probably not an issue with this action but can I get some help with this, I am trying to restart a service on a ubuntu 20.04...

When running SSH commands directly on my Digital Ocean instance, I can see the following in the GitHub Workflows output: ``` (node:3089) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security...

could you please add support for multiple hosts

``` Run garygrossgarten/github-action-ssh@release Establishing a SSH connection to ***. using provided private key (node:1514) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(),...