Skip to content

Commit b5e9bf0

Browse files
committed
Fix Sqlite for php8.3
1 parent ddddf6f commit b5e9bf0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/default.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ jobs:
8787
builder: ${{ steps.buildx.outputs.name }}
8888
context: ./src
8989
file: ./src/Dockerfile
90-
build-args:
91-
- CLI_VERSION=php${{ matrix.version }}
92-
- INSTALL_SQLITE=${{ matrix.version == "8.3" }}
90+
build-args: |
91+
CLI_VERSION=php${{ matrix.version }}
92+
INSTALL_SQLITE=${{ matrix.version >= '8.3' }}
9393
platforms: linux/amd64,linux/arm64
9494
push: ${{ github.event_name != 'pull_request' }}
9595
tags: ${{ steps.prep.outputs.tags }}

0 commit comments

Comments
 (0)