We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c92029 commit 4eafd4cCopy full SHA for 4eafd4c
1 file changed
.github/workflows/ci-cd.yml
@@ -4,6 +4,7 @@ on: [push, workflow_dispatch]
4
5
jobs:
6
build:
7
+ name: Build
8
runs-on: ubuntu-latest
9
strategy:
10
matrix:
@@ -88,10 +89,15 @@ jobs:
88
89
docker push kooldev/php:${{ matrix.version }}-nginx${{ matrix.type }}
90
docker push kooldev/php:${{ matrix.version }}-nginx-wkhtmltopdf${{ matrix.type }}
91
92
+ trigger-wordpress:
93
+ name: Trigger docker-wordpress
94
+ runs-on: ubuntu-latest
95
+ needs: build
96
+ steps:
97
- name: Trigger build on kool-dev/docker-wordpress
98
uses: benc-uk/workflow-dispatch@v1.1
99
if: github.ref == 'refs/heads/master' && github.repository == 'kool-dev/docker-php'
100
with:
101
workflow: CI
102
repo: kool-dev/docker-wordpress
- token: ${{ secrets.WORKFLOW_TOKEN }}
103
+ token: ${{ secrets.WORKFLOW_TOKEN }}
0 commit comments