-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (59 loc) · 1.63 KB
/
build-and-push.yaml
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
name: Build and push to Docker Hub as outlandish/wordpress:latest
on:
push:
branches: [main]
schedule:
- cron: '17 2 * * *'
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: "Build and push 'latest' (8.1 / default tag)"
id: docker_build_latest
uses: docker/build-push-action@v5
with:
push: true
file: ./php8.1/Dockerfile
tags: outlandish/wordpress:latest
-
name: Build and push php7.4
id: docker_build_php7_4
uses: docker/build-push-action@v5
with:
push: true
file: ./php7.4/Dockerfile
tags: outlandish/wordpress:php7.4
-
name: Build and push php8.0
id: docker_build_php8_0
uses: docker/build-push-action@v5
with:
push: true
file: ./php8.0/Dockerfile
tags: outlandish/wordpress:php8.0
-
name: Build and push php8.1
id: docker_build_php8_1
uses: docker/build-push-action@v5
with:
push: true
file: ./php8.1/Dockerfile
tags: outlandish/wordpress:php8.1
-
name: Build and push php8.2
id: docker_build_php8_2
uses: docker/build-push-action@v5
with:
push: true
file: ./php8.2/Dockerfile
tags: outlandish/wordpress:php8.2