We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 086f31d commit 147d227Copy full SHA for 147d227
.github/workflows/publish.yml
@@ -3,7 +3,7 @@ name: Docker Build And Push To Docker Hub
3
on:
4
push:
5
branches:
6
- - main
+ - '*'
7
tags:
8
- 'v*.*.*'
9
@@ -24,6 +24,8 @@ jobs:
24
deployment:
25
name: Deployment
26
runs-on: ubuntu-latest
27
+ needs: build
28
+ if: github.ref == 'refs/heads/main'
29
environment: production
30
steps:
31
- name: Docker meta
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM php:8.0-fpm-bullseye
+FROM php:8.1-fpm-bullseye
2
WORKDIR /var/www/html
0 commit comments