From 29a2be79ba759c34b634f62a8aa2cc4217468bcd Mon Sep 17 00:00:00 2001 From: Payton Swick Date: Sun, 8 Dec 2024 13:54:19 -0500 Subject: [PATCH] Try quoting phpcs output --- .github/workflows/csqa.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/csqa.yml b/.github/workflows/csqa.yml index 4fbbc9b..2e97e7c 100644 --- a/.github/workflows/csqa.yml +++ b/.github/workflows/csqa.yml @@ -140,7 +140,7 @@ jobs: run: | PHPCS_OUTPUT=$(./vendor/bin/phpcs --standard=VariableAnalysis --report=Performance ./PHPMailer.php) echo "${PHPCS_OUTPUT}" - echo "PHPCS_PERF_REPORT=${PHPCS_OUTPUT}" >> $GITHUB_OUTPUT + echo "PHPCS_PERF_REPORT=\"${PHPCS_OUTPUT}\"" >> $GITHUB_OUTPUT - name: Parse performance report id: parse_performance_report