Skip to content

Commit 1b54059

Browse files
committed
Remove pypi cache and add client build back
1 parent 3717837 commit 1b54059

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/docker-images.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,6 @@ jobs:
4141
- name: Set up Docker Buildx
4242
uses: docker/setup-buildx-action@v2
4343

44-
# Setup python cache
45-
- name: Setup Python pip
46-
uses: actions/setup-python@v4
47-
with:
48-
python-version: "3.10"
49-
cache: "pip"
50-
5144
# Login against a Docker registry except on PR
5245
# https://github.com/docker/login-action
5346
- name: Log into registry ${{ env.REGISTRY }}
@@ -72,6 +65,14 @@ jobs:
7265
with:
7366
images: ${{ env.REGISTRY }}/${{ env.ORG }}/${{ env.IMAGE_NAME_APP }}
7467

68+
# Build client
69+
- name: Build client
70+
run: |
71+
cd llmstack/client
72+
npm install
73+
npm run build
74+
cd ../../
75+
7576
# Build and push Docker image with Buildx (don't push on PR)
7677
# https://github.com/docker/build-push-action
7778
- name: Build and push LLMStack API Docker image

0 commit comments

Comments
 (0)