From 32f465f7a63d1f278caf93444ff15a15788e56ed Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sat, 4 Nov 2023 13:15:15 +0100 Subject: [PATCH] Add PHP 8.3 to building pipeline --- .github/workflows/publish-release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 47ba7538..be34a9a1 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -10,8 +10,13 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - php-version: ['8.2'] + php-version: ['8.2', '8.3'] swoole: ['yes', 'no'] + exclude: + # Openswoole does not support PHP 8.3, so lets not build for that combination + # Next Shlink version (4.0.0) is completely dropping support for openswoole and we will be able to remove this + - php-version: '8.3' + swoole: 'yes' steps: - uses: actions/checkout@v4 - uses: './.github/actions/ci-setup'