Skip to content

Commit

Permalink
Merge pull request #12 from 10up/feature/upgrade-base-image
Browse files Browse the repository at this point in the history
fix matrix config
  • Loading branch information
pablojmarti authored Jan 12, 2023
2 parents ac0d596 + 84aff87 commit b252e07
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ jobs:
# 7.4 is the current "latest" default version and gets this extra tag
# upon EOL, this should move to 8.0
- name: Set PHP 7.4 settings
if: ${{ matrix.base_container == 'php:7.4-buster' }}
if: ${{ matrix.base_container == 'php:7.4-bullseye' }}
run: |
echo "BUILD_TAGS=10up/wordpress-ci:latest,10up/wordpress-ci:php-7.4" >> $GITHUB_ENV
echo "COMPOSER_VERSION=1" >> $GITHUB_ENV
- name: Set PHP 8.0 settings
if: ${{ matrix.base_container == 'php:8.0-buster' }}
if: ${{ matrix.base_container == 'php:8.0-bullseye' }}
run: |
echo "BUILD_TAGS=10up/wordpress-ci:php-8.0" >> $GITHUB_ENV
echo "COMPOSER_VERSION=2" >> $GITHUB_ENV
- name: Set PHP 8.1 settings
if: ${{ matrix.base_container == 'php:8.1-buster' }}
if: ${{ matrix.base_container == 'php:8.1-bullseye' }}
run: |
echo "BUILD_TAGS=10up/wordpress-ci:php-8.1" >> $GITHUB_ENV
echo "COMPOSER_VERSION=2" >> $GITHUB_ENV
Expand Down

0 comments on commit b252e07

Please sign in to comment.