-
Notifications
You must be signed in to change notification settings - Fork 5
107 lines (91 loc) · 3.83 KB
/
docker-publish.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
name: Docker
on:
pull_request:
push:
branches: "master"
env:
IMAGE_NAME: docker-php-base-image
COMPOSER_VERSION: ${{ vars.COMPOSER_VERSION }}
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
tag: [8-3-2, 8-2-3, 8-1-16, 8-1-10]
flavour: ["", "-rootless"]
steps:
- 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: Build and test the image
run: make build-${{ matrix.tag }}${{ matrix.flavour }}
deploy:
needs: test
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
strategy:
matrix:
tag:
[
8.3.2-fpm-alpine3.18,
8.2.3-fpm-alpine3.16,
8.1.16-fpm-alpine3.16,
8.1.10-fpm-alpine3.16,
]
flavour: ["", "-rootless"]
steps:
- uses: actions/checkout@v4
# Refs https://github.com/docker/login-action#github-container-registry
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Check directory and Dockerfile
run: |
# Guess the folder for the php configuration
BASE_FOLDER=$(./scripts/guess_folder.sh "${{ matrix.tag }}")
if [ ! -d "$BASE_FOLDER" ]; then
echo "Fail to guess the configuration folder"
exit 1
fi
test -d $BASE_FOLDER && test -f $BASE_FOLDER/Dockerfile
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push images to GitHub Container Registry
if: ${{ matrix.flavour == '' }}
run: |
# Guess the folder for the php configuration
BASE_FOLDER=$(./scripts/guess_folder.sh "${{ matrix.tag }}")
if [ ! -d "$BASE_FOLDER" ]; then
echo "Fail to guess the configuration folder"
exit 1
fi
# Build process
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
# Change all uppercase to lowercase.
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
echo IMAGE_ID=$IMAGE_ID
docker buildx build --push $BASE_FOLDER --platform "linux/amd64,linux/arm64" --build-arg PHPVER=${{ matrix.tag }} --tag $IMAGE_ID:${{ matrix.tag }} --target dist
docker buildx build --push $BASE_FOLDER --platform "linux/amd64,linux/arm64" --build-arg PHPVER=${{ matrix.tag }} --tag $IMAGE_ID:${{ matrix.tag }}-dev --target dev --build-arg COMPOSER_VERSION="${COMPOSER_VERSION}"
- name: Build and push images to GitHub Container Registry (rootless)
if: ${{ matrix.flavour == '-rootless' }}
run: |
# Guess the folder for the php configuration
BASE_FOLDER=$(./scripts/guess_folder.sh "${{ matrix.tag }}")
if [ ! -d "$BASE_FOLDER" ]; then
echo "Fail to guess the configuration folder"
exit 1
fi
# Build process
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
# Change all uppercase to lowercase.
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
echo IMAGE_ID=$IMAGE_ID
docker buildx build --push $BASE_FOLDER --platform "linux/amd64,linux/arm64" --build-arg PHPVER=${{ matrix.tag }} --build-arg user=1001 --tag $IMAGE_ID:${{ matrix.tag }}-rootless --target dist
docker buildx build --push $BASE_FOLDER --platform "linux/amd64,linux/arm64" --build-arg PHPVER=${{ matrix.tag }} --build-arg user=1001 --tag $IMAGE_ID:${{ matrix.tag }}-rootless-dev --target dev --build-arg COMPOSER_VERSION="${COMPOSER_VERSION}"