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 13dadf5 commit afc740dCopy full SHA for afc740d
.github/workflows/docker-build.yaml
@@ -32,9 +32,9 @@ jobs:
32
- name: Should push?
33
id: shoudPush
34
run: |
35
- if [[ ${{ github.event.ref }} =~ ^refs/tags/php[0-9]dot[0-9]$ ]]; then
+ if [[ ${{ github.event.ref }} =~ ^refs/heads/php[0-9]dot[0-9]$ ]]; then
36
echo "match=true" >> $GITHUB_OUTPUT
37
- elif [[ ${{ github.event.ref }} = "master" ]]; then
+ elif [[ ${{ github.event.ref }} = "refs/heads/master" ]]; then
38
39
fi
40
0 commit comments