From 563ecb1ec3a03a5b8d5ec73419384b9813c9fd14 Mon Sep 17 00:00:00 2001 From: Frugan Date: Wed, 18 Dec 2024 18:49:13 +0100 Subject: [PATCH] build: add php 8.4 --- .github/workflows/ci.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1c5164b..66b1d8e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,14 +57,23 @@ jobs: cache-from: type=gha cache-to: type=gha,mode=max - - name: Build and push [8.3, latest] + name: Build and push [8.3] uses: docker/build-push-action@v6 with: context: ./8.3 push: true - tags: ${{ secrets.DOCKERHUB_USERNAME }}/bitnami-php-fpm:8.3,${{ secrets.DOCKERHUB_USERNAME }}/bitnami-php-fpm:latest + tags: ${{ secrets.DOCKERHUB_USERNAME }}/bitnami-php-fpm:8.3 cache-from: type=gha - cache-to: type=gha,mode=max + cache-to: type=gha,mode=max + - + name: Build and push [8.4, latest] + uses: docker/build-push-action@v6 + with: + context: ./8.4 + push: true + tags: ${{ secrets.DOCKERHUB_USERNAME }}/bitnami-php-fpm:8.4,${{ secrets.DOCKERHUB_USERNAME }}/bitnami-php-fpm:latest + cache-from: type=gha + cache-to: type=gha,mode=max # Docker Hub Personal Access Tokens cannot be used as they are not supported by the API. # Unfortunately, this means that enabling 2FA on Docker Hub will prevent the action from working. -