Skip to content

Commit 50f4c8e

Browse files
committed
fixes
1 parent f9c01c2 commit 50f4c8e

File tree

7 files changed

+1270
-1269
lines changed

7 files changed

+1270
-1269
lines changed

.github/workflows/publish-docker-proxy-amd64.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,12 @@ jobs:
2525

2626
- name: Extract version from tag
2727
id: version
28-
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
28+
run: |
29+
VERSION=${GITHUB_REF#refs/tags/}
30+
if [ -z "$VERSION" ] || [ "$VERSION" = "$GITHUB_REF" ]; then
31+
VERSION="latest"
32+
fi
33+
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
2934
3035
- name: Build and push proxy AMD64 image
3136
uses: docker/build-push-action@v5

.github/workflows/publish-docker-proxy-arm64.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,12 @@ jobs:
2828

2929
- name: Extract version from tag
3030
id: version
31-
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
31+
run: |
32+
VERSION=${GITHUB_REF#refs/tags/}
33+
if [ -z "$VERSION" ] || [ "$VERSION" = "$GITHUB_REF" ]; then
34+
VERSION="latest"
35+
fi
36+
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
3237
3338
- name: Build and push proxy ARM64 image
3439
uses: docker/build-push-action@v5

MANIFEST.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
include optillm.py
21
include optillm/plugins/*.py
32
include optillm/cepo/*.py
43
include optillm/cepo/configs/*.yaml

0 commit comments

Comments
 (0)