Skip to content

Commit 966ffff

Browse files
committed
fix: checking where uv gets installed
1 parent ed71ff7 commit 966ffff

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/semantic-release.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ jobs:
4040
- name: Python Semantic Release
4141
id: release
4242
run: |
43+
which uv
44+
echo $PATH
4345
if semantic-release version; then
4446
echo "released=true" >> $GITHUB_OUTPUT
4547
else

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ score = "no"
6969
[tool.semantic_release]
7070
version_toml = ["pyproject.toml:project.version"]
7171
branch = "main"
72-
build_command = "${VIRTUAL_ENV}/bin/uv build"
72+
build_command = "uv build"
7373
tag_format = "{version}"
7474
commit_version_number = true
7575
commit_message = "RELEASE: {version}"

0 commit comments

Comments
 (0)