@ -24,14 +24,16 @@ jobs:
with:
host: ${{ secrets.DC_HOST }}
user: ${{ secrets.DC_USER }}
pass: ${{ secrets.DC_PASS }}
key: ${{ secrets.DC_PASS }}
port: ${{ secrets.DC_PORT }}
connect_timeout: 10s
first_ssh: |-
rm -rf /home/github/test
ls -la
echo $WELCOME
mkdir -p /home/github/test/test1 &&
echo $WELCOME ||
ls debug
mkdir -p /home/github/test/test2 &&
scp: |-
'./test/*' => /home/github/test/
@ -80,8 +80,10 @@ def ssh_process(ssh, input_ssh):
c = path.expandvars(commands[i])
if c == "":
continue
if c.endswith('&&') or c.endswith('||') or c.endswith(';'):
if c.endswith('&&') or c.endswith('||'):
c = c[0:-2] if i == (l-1) else c
elif c.endswith(';'):
c = c[0:-1] if i == (l-1) else c
else:
c = f"{c} &&" if i < (l-1) else c
command_str = f"{command_str} {c}"