mirror of
https://github.com/Dannecron/php-for-dev.git
synced 2025-12-25 16:12:35 +03:00
ci: fix matrix variable value
This commit is contained in:
6
.github/workflows/continuous-integration.yml
vendored
6
.github/workflows/continuous-integration.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user