fix: don't overwrite with empty cmd/entrypoint (#1076)

Co-authored-by: ChristopherHX <[email protected]>

Signed-off-by: Ryan <[email protected]>

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
This commit is contained in:
Ryan
2022-03-29 18:00:52 +00:00
committed by GitHub
co-authored by mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
parent 5f673cbb6d
commit 24422bf4e4
3 changed files with 26 additions and 3 deletions
+12
View File
@@ -9,3 +9,15 @@ jobs:
with:
somekey: somevalue
args: echo ${INPUT_SOMEKEY} | grep somevalue
- uses: docker://node:16-buster-slim
with:
args: -v
- uses: docker://node:16-buster-slim
with:
entrypoint: /bin/sh
args: -c -- uname -a
- uses: docker://node:16-buster-slim
with:
entrypoint: /bin/sh
args: -c 'uname -a'