We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 355ca78 commit 1dc61e1Copy full SHA for 1dc61e1
.github/workflows/code-quality.yml
@@ -96,7 +96,12 @@ jobs:
96
PHP_VERSION="$DETECTED_VERSION"
97
fi
98
99
- echo "php-version=${PHP_VERSION}" >> "$GITHUB_OUTPUT"
+ # Use a heredoc to safely set the output, preventing format errors
100
+ {
101
+ echo 'plugins<<EOF'
102
+ echo "${PLUGINS_WITH_CONFIG}"
103
+ echo 'EOF'
104
+ } >> "$GITHUB_OUTPUT"
105
echo "Using PHP version ${PHP_VERSION} for ${{ matrix.plugin }}"
106
107
- name: PHP Code Quality for ${{ matrix.plugin }}
0 commit comments