Skip to content

Commit 1be20d5

Browse files
committed
fix uv publish
1 parent d69ed16 commit 1be20d5

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"changeset": patch
3+
---
4+
5+
fix publish workflow

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
for pyproject in $(find . -name "pyproject.toml" -not -path "./.venv/*" -not -path "./node_modules/*"); do
7373
dir=$(dirname "$pyproject")
7474
echo "Publishing package in $dir"
75-
(cd "$dir" && uv publish --skip-existing)
75+
(cd "$dir" && uv publish)
7676
done
7777
7878
- name: Create git tags
@@ -122,4 +122,4 @@ jobs:
122122
} catch (error) {
123123
console.error(`Failed to create release for ${tag}:`, error);
124124
}
125-
}
125+
}

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repos:
1010
hooks:
1111
- id: check-changeset
1212
name: Check for changeset
13-
entry: python changeset/check_changeset.py
13+
entry: uv run changeset/check_changeset.py
1414
language: python
1515
pass_filenames: false
16-
always_run: true
16+
always_run: true

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)