-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub Action for building and pushing UI and BFF images
Signed-off-by: Griffin-Sullivan <[email protected]>
- Loading branch information
1 parent
0c369a0
commit 3e9902a
Showing
5 changed files
with
108 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
name: Build and Push UI and BFF Images | ||
on: | ||
pull_request: | ||
branches: | ||
- 'main' | ||
tags: | ||
- 'v*' | ||
paths: | ||
- 'clients/ui/**' | ||
env: | ||
IMG_ORG: kubeflow | ||
IMG_UI_REPO: model-registry-ui | ||
IMG_BFF_REPO: model-registry-bff | ||
DOCKER_USER: ${{ secrets.DOCKERHUB_USERNAME }} | ||
DOCKER_PWD: ${{ secrets.DOCKERHUB_TOKEN }} | ||
PUSH_IMAGE: true | ||
jobs: | ||
build-image: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Assign context variable for various action contexts (tag, main, CI) | ||
- name: Assigning tag context | ||
if: github.head_ref == '' && startsWith(github.ref, 'refs/tags/v') | ||
run: echo "BUILD_CONTEXT=tag" >> $GITHUB_ENV | ||
- name: Assigning main context | ||
if: github.head_ref == '' && github.ref == 'refs/heads/main' | ||
run: echo "BUILD_CONTEXT=main" >> $GITHUB_ENV | ||
# checkout branch | ||
- uses: actions/checkout@v4 | ||
# set image version | ||
- name: Set main-branch environment | ||
if: env.BUILD_CONTEXT == 'main' | ||
run: | | ||
commit_sha=${{ github.event.after }} | ||
tag=main-${commit_sha:0:7} | ||
echo "VERSION=${tag}" >> $GITHUB_ENV | ||
- name: Set tag environment | ||
if: env.BUILD_CONTEXT == 'tag' | ||
run: | | ||
echo "VERSION=${{ github.ref_name }}" >> $GITHUB_ENV | ||
- name: Build and Push UI Image | ||
shell: bash | ||
env: | ||
IMG_REPO: ${{ env.IMG_UI_REPO }} | ||
run: ./scripts/build_deploy.sh | ||
- name: Build and Push BFF Image | ||
shell: bash | ||
env: | ||
IMG_REPO: ${{ env.IMG_BFF_REPO }} | ||
run: ./scripts/build_deploy.sh | ||
- name: Tag Latest UI Image | ||
if: env.BUILD_CONTEXT == 'main' | ||
shell: bash | ||
env: | ||
IMG_REPO: ${{ env.IMG_UI_REPO }} | ||
IMG: ${{ env.IMG_ORG }}/${{ env.IMG_UI_REPO }} | ||
BUILD_IMAGE: false # image is already built in "Build and Push UI Image" step | ||
run: | | ||
docker tag ${{ env.IMG }}:$VERSION ${{ env.IMG }}:latest | ||
# BUILD_IMAGE=false skip the build, just push the tag made above | ||
VERSION=latest ./scripts/build_deploy.sh | ||
- name: Tag Latest BFF Image | ||
if: env.BUILD_CONTEXT == 'main' | ||
shell: bash | ||
env: | ||
IMG_REPO: ${{ env.IMG_BFF_REPO }} | ||
IMG: ${{ env.IMG_ORG }}/${{ env.IMG_BFF_REPO }} | ||
BUILD_IMAGE: false # image is already built in "Build and Push BFF Image" step | ||
run: | | ||
docker tag ${{ env.IMG }}:$VERSION ${{ env.IMG }}:latest | ||
# BUILD_IMAGE=false skip the build, just push the tag made above | ||
VERSION=latest ./scripts/build_deploy.sh | ||
- name: Tag Main UI Image | ||
if: env.BUILD_CONTEXT == 'main' | ||
shell: bash | ||
env: | ||
IMG_REPO: ${{ env.IMG_UI_REPO }} | ||
IMG: ${{ env.IMG_ORG }}/${{ env.IMG_UI_REPO }} | ||
BUILD_IMAGE: false # image is already built in "Build and Push UI Image" step | ||
run: | | ||
docker tag ${{ env.IMG }}:$VERSION ${{ env.IMG }}:main | ||
# BUILD_IMAGE=false skip the build, just push the tag made above | ||
VERSION=main ./scripts/build_deploy.sh | ||
- name: Tag Main BFF Image | ||
if: env.BUILD_CONTEXT == 'main' | ||
shell: bash | ||
env: | ||
IMG_REPO: ${{ env.IMG_BFF_REPO }} | ||
IMG: ${{ env.IMG_ORG }}/${{ env.IMG_BFF_REPO }} | ||
BUILD_IMAGE: false # image is already built in "Build and Push BFF Image" step | ||
run: | | ||
docker tag ${{ env.IMG }}:$VERSION ${{ env.IMG }}:main | ||
# BUILD_IMAGE=false skip the build, just push the tag made above | ||
VERSION=main ./scripts/build_deploy.sh |
This file contains 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
This file contains 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
This file contains 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