mirror of
https://github.com/appleboy/ssh-action.git
synced 2026-06-30 00:52:09 +00:00
15 lines
213 B
Bash
Executable File
15 lines
213 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
export GITHUB="true"
|
|
|
|
{
|
|
sh -c "/bin/drone-ssh $*"
|
|
} | tee /tmp/outFile
|
|
|
|
echo "stdout<<EOF" >> $GITHUB_OUTPUT
|
|
cat /tmp/outFile >> $GITHUB_OUTPUT
|
|
echo "EOF" >> $GITHUB_OUTPUT
|