From 16f786b360eb9b29aeae958217043893623e5387 Mon Sep 17 00:00:00 2001 From: Soner Sayakci Date: Fri, 26 Jul 2024 15:55:35 +0200 Subject: [PATCH] fix: remove php 8.1 build --- matrix.mjs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/matrix.mjs b/matrix.mjs index a2f4331..ff84635 100644 --- a/matrix.mjs +++ b/matrix.mjs @@ -17,6 +17,10 @@ for (const swVersion of Object.keys(swToPHP).reverse()) { alreadyAddedVersion.add(patchVersion); for (const phpVersion of swToPHP[swVersion]) { + if (phpVersion === '8.1') { + continue; + } + matrix.push({ tag: patchVersion, swVersion,