@@ -72,17 +72,24 @@ jobs:
72
72
password : ${{ secrets.DOCKER_PASSWORD }}
73
73
74
74
# Build and tag Docker images with both :latest and :[NEW_VERSION]
75
- - name : Build and tag Docker images
75
+ - name : Proxy Build and tag Docker images
76
+ working-directory : ./deploy
76
77
run : |
77
- docker build \
78
- --build-arg LLMSTUDIO_VERSION=${{ env.VERSION }} \
79
- -t tensoropsai/llmstudio:latest \
80
- -t tensoropsai/llmstudio:${{ env.VERSION }} \
81
- .
78
+ make version=${{ env.VERSION }} build-proxy
82
79
80
+ # Build and tag Docker images with both :latest and :[NEW_VERSION]
81
+ - name : Tracker Build and tag Docker images
82
+ working-directory : ./deploy
83
+ run : |
84
+ make version=${{ env.VERSION }} build-tracker
85
+
86
+ # Push both Docker images to Docker Hub
87
+ - name : Push Proxy Docker images to Docker Hub
88
+ run : |
89
+ docker push tensoropsai/llmstudio-proxy:${{ env.VERSION }}
90
+ docker push tensoropsai/llmstudio-proxy:latest
83
91
# Push both Docker images to Docker Hub
84
- - name : Push Docker images to Docker Hub
92
+ - name : Push Tracker Docker images to Docker Hub
85
93
run : |
86
- docker push tensoropsai/llmstudio:${{ env.VERSION }}
87
- docker push tensoropsai/llmstudio:latest
88
-
94
+ docker push tensoropsai/llmstudio-tracker:${{ env.VERSION }}
95
+ docker push tensoropsai/llmstudio-tracker:latest
0 commit comments