Skip to content

Commit 7d80cc0

Browse files
Update Python publish workflow to remove caching (#204)
Removed caching for dependencies in the Python publish workflow and adjusted the install command. Signed-off-by: Mathew Shen <datahonor@gmail.com>
1 parent 8cf42fa commit 7d80cc0

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/python-publish.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,13 @@ jobs:
1818
- uses: actions/checkout@v6
1919
- name: Install uv
2020
uses: astral-sh/setup-uv@v7
21-
with:
22-
enable-cache: true
23-
cache-dependency-glob: "pyproject.toml"
2421
- name: "Set up Python"
2522
uses: actions/setup-python@v6
2623
with:
2724
python-version-file: "pyproject.toml"
2825

2926
- name: Install the project
30-
run: uv sync --all-extras --dev
27+
run: uv sync --all-extras
3128
- name: Build package
3229
run: uv build
3330
- name: Publish package

0 commit comments

Comments
 (0)