Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions .github/workflows/jwa_docker_publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Build & Publish JWA Docker image
on:
push:
branches:
- main
- v*-branch
- notebooks-v1
paths:
- components/crud-web-apps/jupyter/**
- components/crud-web-apps/common/**
- releasing/version/VERSION

env:
IMG: ghcr.io/kubeflow/notebooks/jupyter-web-app
ARCH: linux/amd64,linux/ppc64le,linux/arm64

jobs:
push_to_registry:
name: Build & Push image to GHCR Hub
runs-on: ubuntu-22.04
defaults:
run:
working-directory: components/crud-web-apps/jupyter
steps:
- name: Checkout
uses: actions/checkout@v4

- uses: dorny/paths-filter@v3
id: filter
with:
base: ${{ github.ref }}
filters: |
version:
- 'releasing/version/VERSION'

- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Setup QEMU
uses: docker/setup-qemu-action@v3

- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build and push multi-arch docker image
run: make docker-build-push-multi-arch

- name: Build and push latest multi-arch docker image
if: github.ref == 'refs/heads/notebooks-v1'
run: TAG=latest make docker-build-push-multi-arch

- name: Build and push multi-arch docker image on Version change
id: version
if: steps.filter.outputs.version == 'true'
run: TAG=$(cat ../../../releasing/version/VERSION) make docker-build-push-multi-arch