Skip to content

Commit

Permalink
Extend GHA to cover for Docker build (kubeflow#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarilabs authored Oct 13, 2023
1 parent e9991bc commit 5ef8c07
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/container-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Test Container Image build

on:
push:
branches: [ 'main' ]
pull_request:
branches: [ '*' ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: docker build . --file Dockerfile --tag model-registry:$(date +%s)

0 comments on commit 5ef8c07

Please sign in to comment.