multiline support

This commit is contained in:
Abdud Dayan Adeeb
2020-06-17 21:00:26 -04:00
parent 81b4f22df4
commit 9ad56b3196
3 changed files with 16 additions and 4 deletions

View File

@ -4,4 +4,6 @@ if [ ! -z $INPUT_USERNAME ];
then echo $INPUT_USERNAME | docker login $INPUT_REGISTRY -u $INPUT_PASSWORD --password-stdin
fi
exec docker run $INPUT_OPTIONS $INPUT_IMAGE $INPUT_COMMAND
echo "$INPUT_COMMAND" | sed -e 's/\\n/;/g' > semicolon_delimited_script
exec docker run $INPUT_OPTIONS $INPUT_IMAGE /bin/sh -c "`cat semicolon_delimited_script`"