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

@ -11,7 +11,17 @@ Docker already supports running commands inside a docker image. See [jobs.<jobs_
- uses: addnab/docker-run-action@v1
with:
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