Skip to content

Build Docker Images

Build Docker Images #9

Workflow file for this run

name: 'Build Docker Images for Testing'
on:
schedule:
- cron: '0 0 1,15 * *'
workflow_call:
workflow_dispatch:
jobs:
build:
strategy:
matrix:
tag: ['8.1.29', '8.2.20', '8.3.8']
zts: [yes, no]
uses: "./.github/workflows/docker-image.yml"
with:
php: ${{ matrix.tag }}
zts: ${{ matrix.zts }}
secrets:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}