We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40f61d6 commit 05e5123Copy full SHA for 05e5123
action.yml
@@ -80,14 +80,15 @@ runs:
80
INPUT_MODULE: ${{ inputs.module }}
81
run: |
82
tmpout=$(mktemp)
83
- INPUT_ARGS="${INPUT_ARGS:-$INPUT_CALL}"
+ ARGS="${{ inputs.args }}"
84
+ ARGS="${INPUT_ARGS:-"${{ inputs.call }}"}"
85
cd ${{ inputs.workdir }} && { \
86
DAGGER_CLOUD_TOKEN=${{ inputs.cloud-token }} \
87
dagger \
88
${{ inputs.dagger-flags }} \
89
${{ inputs.verb }} \
90
${INPUT_MODULE:+-m $INPUT_MODULE} \
- $INPUT_ARGS; } | tee "${tmpout}"
91
+ $ARGS; } | tee "${tmpout}"
92
93
(echo -n "stdout=" && cat "${tmpout}") >> "$GITHUB_OUTPUT"
94
0 commit comments