mirror of
https://github.com/appleboy/ssh-action.git
synced 2026-06-30 09:08:17 +00:00
14 lines
192 B
Bash
Executable File
14 lines
192 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
export GITHUB="true"
|
|
|
|
{
|
|
sh -c "/bin/drone-ssh $*"
|
|
} | tee /tmp/outFile
|
|
|
|
stdout=$(cat /tmp/outFile)
|
|
echo "stdout=${stdout//$'\n'/\\n}" >> $GITHUB_OUTPUT
|