3636 - name : Push Docker Image Latest
3737 run : docker push anave/php-laravel:latest
3838
39+ build-8-1-supervisor-debian :
40+ name : Build and Push Docker image 8.1-supervisor-debian
41+ runs-on : ubuntu-latest
42+ needs : [ docker-login ]
43+ steps :
44+ - uses : actions/checkout@v3
45+
46+ - name : Docker Hub Login
47+ env :
48+ DOCKER_HUB_LOGIN : ${{secrets.DOCKER_HUB_LOGIN}}
49+ DOCKER_HUB_SECRET : ${{secrets.DOCKER_HUB_SECRET}}
50+ run : docker login -u $DOCKER_HUB_LOGIN -p $DOCKER_HUB_SECRET
51+
52+ - name : Build the Docker Image 8.1-supervisor-debian
53+ run : docker build . --file php/8.1-supervisor-debian/Dockerfile --tag anave/php-laravel:8.1-supervisor-debian
54+
55+ - name : Push Docker Image 8.1-supervisor-debian
56+ run : docker push anave/php-laravel:8.1-supervisor-debian
57+
3958 build-8-1 :
4059 name : Build and Push Docker image 8.1
4160 runs-on : ubuntu-latest
5271 - name : Build the Docker Image 8.1
5372 run : docker build . --file php/8.1/Dockerfile --tag anave/php-laravel:8.1
5473
55- - name : Push Docker Image 8.0
74+ - name : Push Docker Image 8.1
5675 run : docker push anave/php-laravel:8.1
5776
5877 build-8 :
93112 - name : Push Docker Image 8.0-supervisor
94113 run : docker push anave/php-laravel:8-supervisor
95114
96- build -8-supervisor-debian :
115+ uild -8-supervisor-debian :
97116 name : Build and Push Docker image 8.0 with Supervisor on Debian Image
98117 runs-on : ubuntu-latest
99118 needs : [ docker-login ]
@@ -110,7 +129,8 @@ jobs:
110129 run : docker build . --file php/8.0-supervisor-debian/Dockerfile --tag anave/php-laravel:8-supervisor-debian
111130
112131 - name : Push Docker Image 8.0-supervisor-debian
113- run : docker push anave/php-laravel:8-supervisor-debian
132+ run :
133+ docker push anave/php-laravel:8-supervisor-debianb
114134
115135 build-7 :
116136 name : Build and Push Docker image 7.4
0 commit comments