Skip to content

Commit

Permalink
Fix Sqlite for php8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-potter committed Dec 6, 2024
1 parent ddddf6f commit b5e9bf0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ jobs:
builder: ${{ steps.buildx.outputs.name }}
context: ./src
file: ./src/Dockerfile
build-args:
- CLI_VERSION=php${{ matrix.version }}
- INSTALL_SQLITE=${{ matrix.version == "8.3" }}
build-args: |
CLI_VERSION=php${{ matrix.version }}
INSTALL_SQLITE=${{ matrix.version >= '8.3' }}
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.prep.outputs.tags }}

0 comments on commit b5e9bf0

Please sign in to comment.