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

10 lines
316 B
Bash
Raw Normal View History

2020-06-18 00:47:31 +02:00
#!/usr/bin/env bash
if [ ! -z $INPUT_USERNAME ];
then echo $INPUT_USERNAME | docker login $INPUT_REGISTRY -u $INPUT_PASSWORD --password-stdin
fi
2020-06-18 03:04:51 +02:00
echo "$INPUT_RUN" | sed -e 's/\\n/;/g' > semicolon_delimited_script
2020-06-18 03:00:26 +02:00
2020-06-18 03:21:47 +02:00
exec docker run $INPUT_OPTIONS $INPUT_IMAGE /bin/$INPUT_SHELL -c "`cat semicolon_delimited_script`"