From 94b7515a2e21a67cfdc2e018604f252cefd62dd1 Mon Sep 17 00:00:00 2001 From: Shaun Maher Date: Fri, 19 Jan 2024 11:10:29 +1100 Subject: [PATCH] Add push to Docker Hub --- .github/workflows/ghcr_deploy.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ghcr_deploy.yml b/.github/workflows/ghcr_deploy.yml index decaa5c631..ab3d71a6bf 100644 --- a/.github/workflows/ghcr_deploy.yml +++ b/.github/workflows/ghcr_deploy.yml @@ -34,6 +34,13 @@ jobs: with: push: true tags: litellm/litellm:${{ github.event.inputs.tag || 'latest' }} + - + name: Build and push litellm-ui image + uses: docker/build-push-action@v5 + with: + push: true + file: ui/Dockerfile + tags: litellm/litellm-ui:${{ github.event.inputs.tag || 'latest' }} - name: Build and push litellm-database image uses: docker/build-push-action@v5 @@ -41,6 +48,7 @@ jobs: push: true file: Dockerfile.database tags: litellm/litellm-database:${{ github.event.inputs.tag || 'latest' }} + build-and-push-image: runs-on: ubuntu-latest # Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job.