This commit is contained in:
Jesse 2024-01-02 21:56:11 +00:00 committed by GitHub
commit 9dad5242f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 1 deletions

View File

@ -67,6 +67,9 @@ inputs:
description: 'Enable debug mode.'
allenvs:
description: 'pass all environment variable to shell script.'
outputs:
stdout:
description: 'Standard output of the executed commands.'
runs:
using: 'docker'
image: 'Dockerfile'

View File

@ -1,7 +1,14 @@
#!/bin/sh
set -eu
set -o pipefail
export GITHUB="true"
sh -c "/bin/drone-ssh $*"
{
sh -c "/bin/drone-ssh $*"
} | tee /tmp/outFile
echo "stdout<<EOF" >> $GITHUB_OUTPUT
cat /tmp/outFile >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT