Files
common/aws/aws-cli/entrypoint.sh
2025-06-24 15:24:16 -07:00

16 lines
324 B
Bash

#!/bin/sh
ARGS="$@"
OUTPUT=$(bash -c "aws $ARGS")
RESULT=$?
echo "$OUTPUT"
#Output multiline strings.
#https://trstringer.com/github-actions-multiline-strings/
if [[ -n "$OUTPUT" ]]; then
echo "console<<EOF" >> "$GITHUB_OUTPUT"
echo "$OUTPUT" >> "$GITHUB_OUTPUT"
echo "EOF" >> "$GITHUB_OUTPUT"
fi
exit $RESULT