Skip to content

Commit 744d810

Browse files
authored
Merge pull request #141 from codelion/codelion-patch-1
Update publish.yml
2 parents 3dfcda3 + 7732664 commit 744d810

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/publish.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
tags: |
6363
type=semver,pattern={{version}}
6464
type=semver,pattern={{major}}.{{minor}}
65-
latest
65+
type=raw,value=latest
6666
6767
# Build and push proxy image
6868
- name: Build and push proxy_only Docker image
@@ -77,6 +77,16 @@ jobs:
7777
cache-from: type=gha,scope=proxy
7878
cache-to: type=gha,scope=proxy,mode=max
7979

80+
# Add cleanup steps after proxy build
81+
- name: Clean up disk space after proxy build
82+
run: |
83+
# Remove all unused docker data including stopped containers, unused networks, dangling images, and build cache
84+
docker system prune -af
85+
# Remove all unused build cache
86+
docker builder prune -af
87+
# Optional: If you need more aggressive cleanup
88+
rm -rf /tmp/*
89+
8090
- name: Extract metadata for Docker
8191
id: meta
8292
uses: docker/metadata-action@v5

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="optillm",
5-
version="0.0.28",
5+
version="0.0.29",
66
packages=find_packages(),
77
py_modules=['optillm'],
88
package_data={

0 commit comments

Comments
 (0)