Is there any way to write ssh commands in GitHub actions without third-party actions? I have tried the following commands but it does not run the ssh commands to completion:
run: |
ssh $USER@$SERVER
sh -c 'pwd'
Is there any way to write ssh commands in GitHub actions without third-party actions? I have tried the following commands but it does not run the ssh commands to completion:
run: |
ssh $USER@$SERVER
sh -c 'pwd'