From 22f8b7c290b37d19c7933fd923c7ef7c55bea4a7 Mon Sep 17 00:00:00 2001 From: dannc Date: Thu, 17 Aug 2023 18:12:56 +0700 Subject: [PATCH] ci: fix matrix variable value --- .github/workflows/continuous-integration.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 3a211da..0916b1a 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - php_version: [7.2, 7.3, 7.4, 8.0, 8.1, 8.2] + php_version: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2'] steps: - name: Check out repository uses: actions/checkout@v2 @@ -40,7 +40,7 @@ jobs: - name: tag latest image if: | success() - && ${{ matrix.php_version }} == 7.4 + && ${{ matrix.php_version }} == '7.4' uses: actions-hub/docker@master with: args: tag dannecron/php-for-dev:7.4 dannecron/php-for-dev:latest @@ -48,7 +48,7 @@ jobs: - name: push latest image to docker hub if: | success() - && ${{ matrix.php_version }} == 7.4 + && ${{ matrix.php_version }} == '7.4' uses: actions-hub/docker@master with: args: push dannecron/php-for-dev:latest