remove stderr

This commit is contained in:
Jesse 2024-01-02 21:20:17 +00:00
parent a3c6d747c4
commit 384d12c1a4
2 changed files with 2 additions and 5 deletions

View File

@ -70,8 +70,6 @@ inputs:
outputs:
stdout:
description: 'Standard output of the executed commands.'
stderr:
description: 'Standard error of the executed commands.'
runs:
using: 'docker'
image: 'Dockerfile'

View File

@ -1,14 +1,13 @@
#!/bin/sh
set -eu
set -o pipefail
export GITHUB="true"
{
sh -c "/bin/drone-ssh $*"
} 2> /tmp/errFile | tee /tmp/outFile
} | tee /tmp/outFile
stdout=$(cat /tmp/outFile)
stderr=$(cat /tmp/errFile)
echo "stdout=${stdout//$'\n'/\\n}" >> $GITHUB_OUTPUT
echo "stderr=${stderr//$'\n'/\\n}" >> $GITHUB_OUTPUT