-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (52 loc) · 1.37 KB
/
ci.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
name: CI - Build and push
on:
push:
branches:
- "main"
jobs:
build-and-push-caddy:
name: Build and push Caddy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build
uses: docker/build-push-action@v3
with:
context: .
file: caddy/Dockerfile
push: true
tags: ghcr.io/${{ github.actor }}/caddy:latest
build-and-push-php:
name: Build and push PHP
strategy:
fail-fast: false
matrix:
php_version:
- "8.3"
- "8.2"
- "8.1"
- "8.0"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build
uses: docker/build-push-action@v3
with:
context: .
file: php/${{ matrix.php_version }}/Dockerfile
push: true
tags: ghcr.io/${{ github.actor }}/php-fpm:${{ matrix.php_version }}