-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (50 loc) · 1.59 KB
/
build.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
name: build
on:
push:
schedule:
- cron: '0 0 * * *'
jobs:
build:
runs-on: ubuntu-22.04
strategy:
fail-fast: true
matrix:
php: [ '7.4', '8.0', '8.1' ]
server: [ 'nginx', 'openlitespeed' ]
name: Runtime ${{ matrix.server }} - ${{ matrix.php }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Nginx image
uses: docker/build-push-action@v4
with:
push: ${{ github.ref == 'refs/heads/main' }}
tags: ghcr.io/sitepilot/runtime:${{ matrix.php }}
platforms: linux/amd64,linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: |
PHP_VERSION=${{ matrix.php }}
if: matrix.server == 'nginx'
- name: Build and push OpenLiteSpeed image
uses: docker/build-push-action@v4
with:
push: ${{ github.ref == 'refs/heads/main' }}
tags: ghcr.io/sitepilot/runtime:ols-${{ matrix.php }}
platforms: linux/amd64
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: |
IMAGE=${{ matrix.server }}
PHP_VERSION=${{ matrix.php }}
if: matrix.server == 'openlitespeed'