feat(ui): register and display model_type from catalog and model registry #1919
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test UI container image build and deployment | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - "clients/ui/**" | |
| - ".github/workflows/**" | |
| - "!LICENSE*" | |
| - "!DOCKERFILE*" | |
| - "!**.gitignore" | |
| - "!**.md" | |
| - "!**.txt" | |
| permissions: # set contents: read at top-level, per OpenSSF ScoreCard rule TokenPermissionsID | |
| contents: read | |
| env: | |
| IMG_ORG: kubeflow | |
| IMG_REPO: model-registry/ui | |
| PUSH_IMAGE: false | |
| BRANCH: ${{ github.base_ref }} | |
| jobs: | |
| build-image: | |
| permissions: | |
| contents: read | |
| packages: read | |
| runs-on: ubuntu-latest | |
| steps: | |
| # checkout branch | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Build UI Image | |
| shell: bash | |
| run: ./scripts/build_deploy.sh |