Skip to content

Commit a28b749

Browse files
committed
ci
1 parent aaa1b1f commit a28b749

File tree

1 file changed

+34
-1
lines changed

1 file changed

+34
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ on:
66
- 'master'
77

88
jobs:
9-
docker:
9+
10+
docker_74:
1011
runs-on: ubuntu-latest
1112
steps:
1213
-
@@ -29,6 +30,22 @@ jobs:
2930
push: true
3031
file: Dockerfile-7.4-apache
3132
tags: sarkedev/php:7.4-apache
33+
34+
docker_80:
35+
runs-on: ubuntu-latest
36+
steps:
37+
-
38+
name: Set up QEMU
39+
uses: docker/setup-qemu-action@v1
40+
-
41+
name: Set up Docker Buildx
42+
uses: docker/setup-buildx-action@v1
43+
-
44+
name: Login to DockerHub
45+
uses: docker/login-action@v1
46+
with:
47+
username: ${{ secrets.DOCKERHUB_USERNAME }}
48+
password: ${{ secrets.DOCKERHUB_TOKEN }}
3249
-
3350
name: Build and push 8.0
3451
id: docker_build_80
@@ -37,6 +54,22 @@ jobs:
3754
push: true
3855
file: Dockerfile-8.0-apache
3956
tags: sarkedev/php:8.0-apache
57+
58+
docker_81:
59+
runs-on: ubuntu-latest
60+
steps:
61+
-
62+
name: Set up QEMU
63+
uses: docker/setup-qemu-action@v1
64+
-
65+
name: Set up Docker Buildx
66+
uses: docker/setup-buildx-action@v1
67+
-
68+
name: Login to DockerHub
69+
uses: docker/login-action@v1
70+
with:
71+
username: ${{ secrets.DOCKERHUB_USERNAME }}
72+
password: ${{ secrets.DOCKERHUB_TOKEN }}
4073
-
4174
name: Build and push 8.1
4275
id: docker_build_81

0 commit comments

Comments
 (0)