Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build docker-dev images upon a new release | |
on: | |
release: | |
types: | |
- created | |
jobs: | |
build-apache-image: | |
name: Build Apache image | |
uses: ./.github/workflows/build-image.yml | |
with: | |
image: apache | |
context: ./apache | |
secrets: inherit | |
build-nginx-image: | |
name: Build Nginx image | |
uses: ./.github/workflows/build-image.yml | |
with: | |
image: nginx | |
context: ./nginx | |
secrets: inherit | |
build-mssql-images: | |
name: Build MSSQL images | |
strategy: | |
matrix: | |
version: [2017, 2019, 2022] | |
uses: ./.github/workflows/build-image.yml | |
with: | |
image: mssql${{ matrix.version }} | |
context: ./mssql | |
dockerfile: ${{ matrix.version }}/Dockerfile | |
multiarch: false # Mssql does not support multiple architectures | |
secrets: inherit | |
build-php-images: | |
name: Build PHP images | |
uses: ./.github/workflows/build-php-images.yml | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [73, 74, 80, 81, 82, 83] | |
with: | |
version: ${{ matrix.version }} | |
secrets: inherit | |
build-legacy-php-base-image: | |
name: Build legacy PHP base image | |
uses: ./.github/workflows/build-image.yml | |
with: | |
image: php-base | |
context: ./php/base | |
multiarch: false | |
secrets: inherit | |
build-legacy-php-images: | |
name: Build legacy PHP images | |
needs: build-legacy-php-base-image | |
uses: ./.github/workflows/build-php-images.yml | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [53, 54, 55, 56, 70, 71, 72] | |
with: | |
version: ${{ matrix.version }} | |
cron: ${{ matrix.version != 53 }} # 5.3 doesn't have a cron container | |
multiarch: false | |
secrets: inherit |