Skip to content

Commit 99928e9

Browse files
authored
Run container image build of UI on PR (#820)
Signed-off-by: Alex Creasy <[email protected]>
1 parent 21b578e commit 99928e9

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Test UI container image build and deployment
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
paths:
6+
- "clients/ui/**"
7+
- "!LICENSE*"
8+
- "!DOCKERFILE*"
9+
- "!**.gitignore"
10+
- "!**.md"
11+
- "!**.txt"
12+
env:
13+
IMG_ORG: kubeflow
14+
IMG_REPO: model-registry-ui
15+
PUSH_IMAGE: false
16+
BRANCH: ${{ github.base_ref }}
17+
jobs:
18+
build-image:
19+
runs-on: ubuntu-latest
20+
steps:
21+
# checkout branch
22+
- uses: actions/checkout@v4
23+
- name: Build UI Image
24+
shell: bash
25+
run: ./scripts/build_deploy.sh

0 commit comments

Comments
 (0)