Skip to content

Commit e5153f5

Browse files
committed
fix: handle quotes in args
Signed-off-by: Justin Chadwell <[email protected]>
1 parent b292eff commit e5153f5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

action.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,13 @@ runs:
8080
INPUT_MODULE: ${{ inputs.module }}
8181
run: |
8282
tmpout=$(mktemp)
83-
ARGS="${{ inputs.args }}"
84-
ARGS="${ARGS:-"${{ inputs.call }}"}"
8583
cd ${{ inputs.workdir }} && { \
8684
DAGGER_CLOUD_TOKEN=${{ inputs.cloud-token }} \
8785
dagger \
8886
${{ inputs.dagger-flags }} \
8987
${{ inputs.verb }} \
9088
${INPUT_MODULE:+-m $INPUT_MODULE} \
91-
$ARGS; } | tee "${tmpout}"
89+
${{ inputs.args || inputs.call }}; } | tee "${tmpout}"
9290
9391
{
9492
# we need a delim that doesn't appear in the output - a hash of the

0 commit comments

Comments
 (0)