Skip to content

Commit f104393

Browse files
committed
Workflow events restored
1 parent af729c8 commit f104393

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/cd.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ name: "PHP Docker Image delivery"
33
on:
44
schedule:
55
# once per week
6-
- cron: "30 4 * * 0"
6+
- cron: "0 5 1,14 * *"
77
push:
8-
#tags:
9-
# - "v*.*.*"
8+
tags:
9+
- "v*.*.*"
1010

1111
jobs:
12-
#php-image-test:
13-
# uses: ./.github/workflows/ci.yml
12+
php-image-test:
13+
uses: ./.github/workflows/ci.yml
1414

1515
php-image-deploy:
1616
name: "Image deployment"
17-
#needs: php-image-test
17+
needs: php-image-test
1818
strategy:
1919
matrix:
2020
php-version: ['8.3', '8.2', '8.1', '8.0', '7.4']
@@ -29,7 +29,7 @@ jobs:
2929
name: Set up QEMU (multiplatform)
3030
uses: docker/setup-qemu-action@v3
3131
-
32-
name: Set up Docker Buildx
32+
name: Set up Docker Buildx (multiplatform)
3333
uses: docker/setup-buildx-action@v3
3434
-
3535
name: Login to Docker Hub

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
push:
99
branches:
1010
- '**'
11+
#needed as workflow is reusable
1112
workflow_call:
1213
workflow_dispatch:
1314

.github/workflows/security.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
schedule:
55
# once per day
66
- cron: "45 6 * * *"
7+
pull_request:
78

89
jobs:
910
php-security-check:

0 commit comments

Comments
 (0)