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