File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -123,8 +123,8 @@ jobs:
123123 steps :
124124 - name : Configure environment variables
125125 run : |
126- echo PHP_FPM_UID=" $(id -u)" >> "$GITHUB_ENV"
127- echo PHP_FPM_GID=" $(id -g)" >> "$GITHUB_ENV"
126+ echo " PHP_FPM_UID=$(id -u)" >> "$GITHUB_ENV"
127+ echo " PHP_FPM_GID=$(id -g)" >> "$GITHUB_ENV"
128128
129129 - name : Checkout repository
130130 uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ jobs:
132132 # used for PHP 8 testing instead.
133133 if [ "${LOCAL_PHP}" == '8.0-fpm' ]; then
134134 docker compose run --rm php composer install --ignore-platform-reqs
135- echo PHPUNIT_SCRIPT=" php-composer" >> "$GITHUB_ENV"
135+ echo " PHPUNIT_SCRIPT=php-composer" >> "$GITHUB_ENV"
136136 elif [ "${LOCAL_PHP}" == '7.1-fpm' ]; then
137137 docker compose run --rm php composer update
138138 git checkout -- composer.lock
Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ jobs:
147147 run : |
148148 # shellcheck disable=SC2016
149149 COMMIT_MESSAGE="$(echo "${COMMIT_MSG_RAW}" | awk 'NR==1' | sed 's/`/\\`/g' | sed 's/\"/\\\\\\"/g' | sed 's/\$/\\$/g')"
150- echo commit_message_escaped=" ${COMMIT_MESSAGE}" >> "$GITHUB_OUTPUT"
150+ echo " commit_message_escaped=${COMMIT_MESSAGE}" >> "$GITHUB_OUTPUT"
151151 env :
152152 COMMIT_MSG_RAW : ${{ ( github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' ) && fromJson( steps.current-commit-message.outputs.result ) || github.event.head_commit.message }}
153153
You can’t perform that action at this time.
0 commit comments