Skip to content

Commit

Permalink
Use multi-line output to set var
Browse files Browse the repository at this point in the history
  • Loading branch information
sirbrillig committed Dec 8, 2024
1 parent 29a2be7 commit 22fb0ca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/csqa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,9 @@ 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<<EOF" >> $GITHUB_OUTPUT
echo "${PHPCS_OUTPUT}" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
- name: Parse performance report
id: parse_performance_report
Expand Down

0 comments on commit 22fb0ca

Please sign in to comment.