-
-
Notifications
You must be signed in to change notification settings - Fork 17
111 lines (108 loc) · 3.28 KB
/
build-php-images.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
name: Build PHP Images
on:
# Uncomment below for testing purposes
pull_request:
push:
branches:
- main
jobs:
buildx:
runs-on: ubuntu-24.04
env:
TERM: xterm
strategy:
fail-fast: false
matrix:
include:
- image: php
tag: 8.4-fpm-4
context: images/8.4-fpm
- image: php
tag: 8.4-apache-4
context: images/8.4-apache
- image: php
tag: 8.3-fpm-4
context: images/8.3-fpm
- image: php
tag: 8.3-apache-4
context: images/8.3-apache
- image: php
tag: 8.2-fpm-4
context: images/8.2-fpm
- image: php
tag: 8.2-apache-4
context: images/8.2-apache
- image: php
tag: 8.1-fpm-4
context: images/8.1-fpm
- image: php
tag: 8.1-apache-4
context: images/8.1-apache
- image: php
tag: 8.0-fpm-4
context: images/8.0-fpm
- image: php
tag: 8.0-apache-4
context: images/8.0-apache
- image: php
tag: 7.4-fpm-4
context: images/7.4-fpm
- image: php
tag: 7.4-apache-4
context: images/7.4-apache
- image: php
tag: 7.3-fpm-4
context: images/7.3-fpm
- image: php
tag: 7.3-apache-4
context: images/7.3-apache
- image: php
tag: 7.2-fpm-4
context: images/7.2-fpm
- image: php
tag: 7.2-apache-4
context: images/7.2-apache
- image: php
tag: 7.1-fpm-4
context: images/7.1-fpm
- image: php
tag: 7.1-apache-4
context: images/7.1-apache
- image: php
tag: 7.0-fpm-4
context: images/7.0-fpm
- image: php
tag: 7.0-apache-4
context: images/7.0-apache
- image: php
tag: 5.6-fpm-4
context: images/5.6-fpm
- image: php
tag: 5.6-apache-4
context: images/5.6-apache
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Set tag suffix
id: release
if: ${{ github.event_name == 'pull_request' }}
run: echo "tag_suffix=-edge" >> "$GITHUB_OUTPUT"
# Build our images.
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push devwithlando/${{ matrix.image }}:${{ matrix.tag }}${{ steps.release.outputs.tag_suffix }}
uses: docker/build-push-action@v6
with:
context: ${{ matrix.context }}
platforms: linux/amd64,linux/arm64
push: true
tags: devwithlando/${{ matrix.image }}:${{ matrix.tag }}${{ steps.release.outputs.tag_suffix }}
cache-from: type=gha,scope=${{ matrix.image }}-${{ matrix.tag }}
cache-to: type=gha,mode=max,scope=${{ matrix.image }}-${{ matrix.tag }}