ci/cd print commit hash to use

This commit is contained in:
Ishaan Jaff 2024-04-05 16:13:55 -07:00
parent 37ef5c0cbf
commit 7ead6f65da
2 changed files with 3 additions and 1 deletions

View file

@ -7,6 +7,9 @@ jobs:
steps: steps:
- checkout - checkout
- run:
name: Show git commit hash
command: echo "Git commit hash: $CIRCLE_SHA1"
- run: - run:
name: Check if litellm dir was updated or if pyproject.toml was modified name: Check if litellm dir was updated or if pyproject.toml was modified

View file

@ -7,7 +7,6 @@ from litellm.proxy._types import KeyManagementSystem, KeyManagementSettings
import httpx import httpx
import dotenv import dotenv
print("IMPORT LITELLM on Ishaan's commit") # noqa
dotenv.load_dotenv() dotenv.load_dotenv()
############################################# #############################################