Skip to content

Commit 08792b4

Browse files
authored
ci: Add a workflow to build Docker image (#3898)
1 parent 1346b8b commit 08792b4

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Build Docker image
2+
3+
on:
4+
push:
5+
branches:
6+
- staging
7+
workflow_dispatch:
8+
9+
jobs:
10+
build:
11+
name: Build Docker image
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Request to build Docker image
15+
uses: actions/github-script@v6
16+
with:
17+
script: |
18+
github.repos.createDispatchEvent({
19+
owner: 'automattic',
20+
repo: 'vip-container-images',
21+
event_type: 'build-mu-plugins',
22+
client_payload: {}
23+
})

0 commit comments

Comments
 (0)