-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (53 loc) · 1.59 KB
/
docker-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
name: Publish docker images
on:
#daily at 3 UTC
schedule:
- cron: "0 3 * * *"
#this is triggered also on PR merge
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
version: [8.1-cli, 8.2-cli, 8.3-cli]
steps:
-
name: checkout
uses: actions/checkout@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Cache Docker layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ matrix.version }}-${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ matrix.version }}-${{ runner.os }}-buildx-
-
name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push Docker image for php ${{ matrix.version }}
uses: docker/build-push-action@v2
with:
context: ${{ matrix.version }}
tags: vema/docker-php-test:${{ matrix.version }}
pull: true
push: true
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
-
# Temp fix
# https://github.com/docker/build-push-action/issues/252
# https://github.com/moby/buildkit/issues/1896
name: Move cache
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache