From e1c769b591e44b23d0caaff0b29bc34118a6c9e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pau=20Cap=C3=B3?= Date: Wed, 8 Oct 2025 13:55:28 +0200 Subject: [PATCH] add version 8.4 --- .gitea/workflows/weekly-build.yml | 11 +++++++++++ build.sh | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/weekly-build.yml b/.gitea/workflows/weekly-build.yml index e8c4792..ef19aa3 100644 --- a/.gitea/workflows/weekly-build.yml +++ b/.gitea/workflows/weekly-build.yml @@ -71,6 +71,17 @@ jobs: --build-arg PHP_VERSION=8.2 \ . + - name: Build and push PHP 8.4 + run: | + docker buildx build \ + --no-cache \ + --platform=linux/arm64/v8,linux/amd64 \ + --push \ + -f "./Dockerfile-php" \ + -t "git.paucapo.com/server/php:8.4" \ + --build-arg PHP_VERSION=8.4 \ + . + - name: Cleanup if: always() run: | diff --git a/build.sh b/build.sh index 9d34044..16b3dcd 100755 --- a/build.sh +++ b/build.sh @@ -1,6 +1,6 @@ #!/bin/bash -PHP_VERSIONS="7.4 8.0 8.1 8.2" +PHP_VERSIONS="7.4 8.0 8.1 8.2 8.4" PLATFORMS="linux/arm64/v8,linux/amd64" # testing