We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1babeff commit d892f83Copy full SHA for d892f83
2 files changed
.github/workflows/build-container.yaml
@@ -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
11
12
13
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
@@ -4,9 +4,13 @@ on:
push:
branches:
- main
+ paths-ignore:
pull_request:
jobs:
build:
0 commit comments