This repository has been archived on 2024-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
docker-run-action/entrypoint.sh
Abdud Dayan Adeeb 940e86ea21 fixes
2020-06-17 20:50:44 -04:00

9 lines
310 B
Bash
Executable file

#!/usr/bin/env bash
if [ ! -z $INPUT_USERNAME ];
then echo $INPUT_USERNAME | docker login $INPUT_REGISTRY -u $INPUT_PASSWORD --password-stdin
fi
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`"