Skip to content

Commit 42f1113

Browse files
committed
Fix extra
1 parent 3145ce6 commit 42f1113

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ runs:
9191
fi
9292
9393
if [ -n "${{ inputs.extra }}" ]; then
94-
extraopt="EXTRA='${{ inputs.extra }}'"
94+
extraopt="EXTRA=${{ inputs.extra }}"
9595
fi
9696
97-
./run_test.sh RUNNER=${{inputs.runner}} --badgedir=$basedir/badges --junit-xml=$basedir/junit.xml --timeout=${{inputs.timeout}} $tagopt $nopt $extraopt || true
97+
./run_test.sh RUNNER=${{inputs.runner}} --badgedir=$basedir/badges --junit-xml=$basedir/junit.xml --timeout=${{inputs.timeout}} $tagopt $nopt "$extraopt" || true
9898
echo "::set-output name=badgedir::$GITHUB_WORKSPACE/cwl-run-conformance-${{ inputs.cwlVersion }}/badges"
9999
echo "::set-output name=result::$GITHUB_WORKSPACE/cwl-run-conformance-${{ inputs.cwlVersion }}/junit.xml"
100100
env:

0 commit comments

Comments
 (0)