Skip to content

Commit d4afff0

Browse files
committed
Hotfix : gitlab-ci
1 parent a972019 commit d4afff0

File tree

3 files changed

+105
-110
lines changed

3 files changed

+105
-110
lines changed

.github/workflows/workflow.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: |
2929
PHP_VERSION="${{ matrix.php_version }}"
3030
docker buildx bake --load \
31-
--set "*.platform=$(uname -p)" \
31+
--set "*.platform=linux/amd64" \
3232
php${PHP_VERSION//.}-${{ matrix.variant }}
3333
docker images --filter=reference=thecodingmachine/php
3434
- name: Login to DockerHub
@@ -43,6 +43,7 @@ jobs:
4343
if: ${{ github.event_name == 'push' || github.event_name == 'schedule' }}
4444
run: |
4545
PHP_VERSION="${{ matrix.php_version }}"
46-
PHP_PATCH_VERSION=`docker run --rm thecodingmachine/php:${PHP_VERSION}-v4-slim-${BRANCH_VARIANT} php -v | head -n1 | grep -P '\d+\.\d+\.\d+' -o | head -n1`
47-
TAG=${PHP_PATCH_VERSION} docker buildx bake --push \
46+
PHP_PATCH_VERSION=`docker run --rm thecodingmachine/php:${PHP_VERSION}-v4-slim-${{ matrix.variant }} php -v | head -n1 | grep -P '\d+\.\d+\.\d+' -o | head -n1`
47+
PHP_MINOR="${PHP_PATCH_VERSION}" docker buildx bake --push \
48+
--set "*.platform=linux/amd64,linux/arm64" \
4849
php${PHP_VERSION//.}-${{ matrix.variant }}

0 commit comments

Comments
 (0)