multiline support
This commit is contained in:
12
README.md
12
README.md
@@ -11,7 +11,17 @@ Docker already supports running commands inside a docker image. See [jobs.<jobs_
|
|||||||
- uses: addnab/docker-run-action@v1
|
- uses: addnab/docker-run-action@v1
|
||||||
with:
|
with:
|
||||||
image: docker:latest
|
image: docker:latest
|
||||||
command: echo "hello world"
|
run: echo "hello world"
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Multiple commands
|
||||||
|
```yaml
|
||||||
|
- uses: addnab/docker-run-action@v1
|
||||||
|
with:
|
||||||
|
image: docker:latest
|
||||||
|
run: |
|
||||||
|
echo "first line"
|
||||||
|
echo "second line"
|
||||||
```
|
```
|
||||||
|
|
||||||
### Supported Inputs
|
### Supported Inputs
|
||||||
|
|||||||
@@ -8,8 +8,8 @@ inputs:
|
|||||||
options:
|
options:
|
||||||
description: 'Options'
|
description: 'Options'
|
||||||
required: false
|
required: false
|
||||||
command:
|
run:
|
||||||
description: 'Command'
|
description: 'Run command in container'
|
||||||
required: false
|
required: false
|
||||||
registry:
|
registry:
|
||||||
description: 'Registry'
|
description: 'Registry'
|
||||||
|
|||||||
@@ -4,4 +4,6 @@ if [ ! -z $INPUT_USERNAME ];
|
|||||||
then echo $INPUT_USERNAME | docker login $INPUT_REGISTRY -u $INPUT_PASSWORD --password-stdin
|
then echo $INPUT_USERNAME | docker login $INPUT_REGISTRY -u $INPUT_PASSWORD --password-stdin
|
||||||
fi
|
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`"
|
||||||
|
|||||||
Reference in New Issue
Block a user