Skip to content
This repository was archived by the owner on Jun 21, 2025. It is now read-only.

Commit 9c64b03

Browse files
committed
fix: Update publish workflow to resolve caching issues
1 parent 9fa3918 commit 9c64b03

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,12 @@ jobs:
2020
uses: astral-sh/setup-uv@v5
2121
with:
2222
python-version: '3.11'
23-
enable-cache: true
24-
cache-dependency-glob: "pyproject.toml uv.toml"
23+
enable-cache: false
24+
25+
- name: Install dependencies
26+
run: |
27+
uv pip install build wheel setuptools
28+
uv pip install -e .
2529
2630
- name: Build package
2731
run: uv build

0 commit comments

Comments
 (0)