mirror of
https://github.com/addnab/docker-run-action.git
synced 2024-12-26 18:51:03 +08:00
10 lines
310 B
Bash
Executable File
10 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`"
|