Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build_push_to_dockerhub:
strategy:
matrix:
base_container: ["php:7.4-bullseye", "php:8.0-bullseye", "php:8.1-bullseye", "php:8.2-bullseye", "php:8.3-bullseye"]
base_container: ["php:7.4-bullseye", "php:8.0-bullseye", "php:8.1-bullseye", "php:8.2-bullseye", "php:8.3-bullseye", "php:8.4-bullseye"]
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -52,6 +52,12 @@ jobs:
echo "BUILD_TAGS=10up/wordpress-ci:php-8.3" >> $GITHUB_ENV
echo "COMPOSER_VERSION=2" >> $GITHUB_ENV

- name: Set PHP 8.4 settings
if: ${{ matrix.base_container == 'php:8.4-bullseye' }}
run: |
echo "BUILD_TAGS=10up/wordpress-ci:php-8.4" >> $GITHUB_ENV
echo "COMPOSER_VERSION=2" >> $GITHUB_ENV

## GitHub Action validation testing before starting workflow ##

- name: Ensure Docker token is present
Expand Down
Loading