Skip to content

Commit fc1ac94

Browse files
committed
add manual workflow trigger
1 parent 4f3debe commit fc1ac94

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build_image.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
name: Build and push container image
22

33
on:
4+
# Trigger the workflow when changes to image/ folder are
5+
# pushed to the main branch
46
push:
57
branches:
68
- main
79
paths:
8-
- 'image/**'
10+
- "image/**"
11+
# Trigger the workflow manually
12+
workflow_dispatch:
913

1014
jobs:
1115
build-and-push:

0 commit comments

Comments
 (0)