Skip to content

Commit d25c2ab

Browse files
authored
fix: workflow
1 parent 5a6201d commit d25c2ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
extensions: bz2, dom, iconv, fileinfo, openssl, xml, zlib
1313
key: cache-v1
1414
PHPUNIT_COVERAGE: 0
15-
PHP_INI: date.timezone='UTC', memory_limit=-1, opcache.enable=1, opcache.enable_cli=1
15+
PHP_INI: date.timezone=UTC, memory_limit=-1, opcache.enable=1, opcache.enable_cli=1
1616

1717
strategy:
1818
matrix:
@@ -53,12 +53,12 @@ jobs:
5353
-
5454
name: Disable JIT for PHP 8 on Linux and Mac
5555
if: (matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest') && matrix.php != '7.4'
56-
run: echo "PHP_INI=\"${PHP_INI}, opcache.jit=0, opcache.jit_buffer_size=0\"" >> $GITHUB_ENV
56+
run: echo "PHP_INI=${PHP_INI}, opcache.jit=0, opcache.jit_buffer_size=0" >> "$GITHUB_ENV"
5757

5858
-
5959
name: Disable JIT for PHP 8 on Windows
6060
if: matrix.os == 'windows-latest' && matrix.php != '7.4'
61-
run: echo "PHP_INI=\"$PHP_INI, opcache.jit=0, opcache.jit_buffer_size=0\"" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
61+
run: echo "PHP_INI=$env:PHP_INI, opcache.jit=0, opcache.jit_buffer_size=0" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
6262

6363
-
6464
name: Install PHP with extensions

0 commit comments

Comments
 (0)