Skip to content

Commit d0635ab

Browse files
author
tchapi
committed
chore
1 parent 6c18487 commit d0635ab

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,10 @@ jobs:
2929
uses: actions/checkout@v4
3030
- name: Install GD PHP extension
3131
run: |
32-
apk add $PHPIZE_DEPS libpng-dev
32+
apk add $PHPIZE_DEPS libpng-dev libzip-dev
3333
docker-php-ext-configure gd
34-
docker-php-ext-install gd
34+
docker-php-ext-configure zip --with-libzip
35+
docker-php-ext-install gd zip
3536
- name: Install Composer
3637
run: wget -qO - https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer --quiet
3738
- name: Validate Composer
@@ -76,9 +77,10 @@ jobs:
7677
uses: actions/checkout@v4
7778
- name: Install MySQL / GD PHP extensions
7879
run: |
79-
apk add $PHPIZE_DEPS icu-libs icu-dev libpng-dev
80+
apk add $PHPIZE_DEPS icu-libs icu-dev libpng-dev libzip-dev
8081
docker-php-ext-configure intl
8182
docker-php-ext-configure gd
83+
docker-php-ext-configure zip --with-libzip
8284
docker-php-ext-install pdo pdo_mysql intl gd zip
8385
- name: Install Composer
8486
run: wget -qO - https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer --quiet

0 commit comments

Comments
 (0)