mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-02-24 15:30:44 +03:00
Fix missing update from uv.lock during release process (#5611)
This commit is contained in:
parent
7e0f4c165d
commit
33f32b06d9
|
@ -53,10 +53,11 @@ def main() -> None:
|
|||
print(f"Updated version in {setup_py_path}")
|
||||
|
||||
# Run uv lock
|
||||
subprocess.run(["uv", "lock"], cwd=ROOT)
|
||||
uv_lock_path = ROOT / "uv.lock"
|
||||
subprocess.run(["uv", "lock", "--no-upgrade"], cwd=ROOT)
|
||||
|
||||
# Commit changes, create tag and push
|
||||
update_git_repo([changelog_path, setup_py_path], release)
|
||||
update_git_repo([changelog_path, setup_py_path, uv_lock_path], release)
|
||||
|
||||
# Create GitHub release
|
||||
github_release = repo.create_git_release(
|
||||
|
|
Loading…
Reference in New Issue
Block a user