You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# this workflow is triggered by an API call when there is a new PyPI release of LiteLLM
2
+
name: Build, Publish LiteLLM Docker Image.
3
+
on:
4
+
pull_request:
5
+
push:
6
+
branches:
7
+
- main
8
+
- dev
9
+
# Defines two custom environment variables for the workflow. Used for the Container registry domain, and a name for the Docker image that this workflow builds.
10
+
env:
11
+
REGISTRY: ghcr.io
12
+
IMAGE_NAME: ${{ github.repository }}
13
+
14
+
# There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu.
0 commit comments