Skip to content

Build and Push to Registry #378

Build and Push to Registry

Build and Push to Registry #378

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Build and Push to Registry
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
schedule:
- cron: 0 6 * * 1,4
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build-versions:
strategy:
max-parallel: 7
matrix:
version:
- '8.4'
- '8.3'
- '8.2'
- '8.1'
variant:
- cli-alpine
- fpm-alpine
- zts-alpine
- cli
- fpm
- zts
- apache
uses: ./.github/workflows/build.yml
secrets: inherit
with:
version: ${{ matrix.version }}
variant: ${{ matrix.variant }}
latest: '8.4'