File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -356,13 +356,13 @@ jobs:
356356 IFS=' ' read -ra TEST_ARRAY <<< "$TEST_NAMES"
357357
358358 # Run the tool and capture output
359- echo "Running: dotnet run --project tools/QuarantineTools/QuarantineTools.csproj -- $FLAG -m $MODE -i \"$ISSUE_URL\" ${TEST_ARRAY[*]}"
359+ echo "Running: dotnet run --project ${{ github.workspace }}/ tools/QuarantineTools/QuarantineTools.csproj -- $FLAG -m $MODE -i \"$ISSUE_URL\" ${TEST_ARRAY[*]}"
360360
361361 set +e
362362 if [ "$ACTION" = "quarantine" ]; then
363- OUTPUT=$(dotnet run --project tools/QuarantineTools/QuarantineTools.csproj -- $FLAG -m "$MODE" -i "$ISSUE_URL" "${TEST_ARRAY[@]}" 2>&1)
363+ OUTPUT=$(dotnet run --project ${{ github.workspace }}/ tools/QuarantineTools/QuarantineTools.csproj -- $FLAG -m "$MODE" -i "$ISSUE_URL" "${TEST_ARRAY[@]}" 2>&1)
364364 else
365- OUTPUT=$(dotnet run --project tools/QuarantineTools/QuarantineTools.csproj -- $FLAG -m "$MODE" "${TEST_ARRAY[@]}" 2>&1)
365+ OUTPUT=$(dotnet run --project ${{ github.workspace }}/ tools/QuarantineTools/QuarantineTools.csproj -- $FLAG -m "$MODE" "${TEST_ARRAY[@]}" 2>&1)
366366 fi
367367 EXIT_CODE=$?
368368 set -e
You can’t perform that action at this time.
0 commit comments