We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b292eff commit e5153f5Copy full SHA for e5153f5
action.yml
@@ -80,15 +80,13 @@ runs:
80
INPUT_MODULE: ${{ inputs.module }}
81
run: |
82
tmpout=$(mktemp)
83
- ARGS="${{ inputs.args }}"
84
- ARGS="${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} \
91
- $ARGS; } | tee "${tmpout}"
+ ${{ inputs.args || inputs.call }}; } | tee "${tmpout}"
92
93
{
94
# we need a delim that doesn't appear in the output - a hash of the
0 commit comments