Skip to content

Commit d892f83

Browse files
committed
#40 Add github actions workflow
Signed-off-by: Kaur Palang <kaur.palang@brightcodecompany.com>
1 parent 1babeff commit d892f83

2 files changed

Lines changed: 30 additions & 0 deletions

File tree

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build OpenIntegrationEngine Container
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- docker
9+
pull_request:
10+
branches:
11+
- main
12+
paths:
13+
- docker
14+
15+
jobs:
16+
build:
17+
runs-on: ubuntu-latest
18+
19+
steps:
20+
- uses: actions/checkout@v4
21+
22+
- name: Build Container
23+
working-directory: docker/
24+
run: ./build-images.sh
25+
26+
- run: docker image ls

.github/workflows/build.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ on:
44
push:
55
branches:
66
- main
7+
paths-ignore:
8+
- docker
79
pull_request:
810
branches:
911
- main
12+
paths-ignore:
13+
- docker
1014

1115
jobs:
1216
build:

0 commit comments

Comments
 (0)