From af9728efb2c226a9ca94b6a745b3ffe74962c9da Mon Sep 17 00:00:00 2001 From: Martin Helmich Date: Sun, 23 Jul 2023 11:57:07 +0200 Subject: [PATCH] Add TYPO3 v12 to build matrix --- .github/workflows/build.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5c65f8d..8bd6b15 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,12 +12,11 @@ jobs: strategy: matrix: version: - - "6.2" - - "7.6" - "8.7" - "9.5" - "10.4" - "11.5" + - "12.4" steps: - uses: actions/checkout@v2 @@ -39,6 +38,6 @@ jobs: docker buildx build -t ${{ secrets.DOCKERHUB_USER }}/typo3:$VERSION --platform linux/arm/v7,linux/arm64/v8,linux/amd64 --push . docker buildx imagetools create ${{ secrets.DOCKERHUB_USER }}/typo3:$VERSION --tag ${{ secrets.DOCKERHUB_USER }}/typo3:$MAJOR - if [[ ${MAJOR} -eq 11 ]] ; then + if [[ ${MAJOR} -eq 12 ]] ; then docker buildx imagetools create ${{ secrets.DOCKERHUB_USER }}/typo3:$VERSION --tag ${{ secrets.DOCKERHUB_USER }}/typo3:latest fi