just: refine release script
I want to make it a fish script though...
This commit is contained in:
parent
6476938f06
commit
2ebf30bec1
1 changed files with 33 additions and 5 deletions
38
justfile
38
justfile
|
|
@ -67,14 +67,42 @@ bump segment:
|
|||
|
||||
[private]
|
||||
release segment:
|
||||
#!/usr/bin/bash
|
||||
export tag=$(uv version --short --output-format text --frozen --bump {{ segment }})
|
||||
#!/usr/bin/env bash
|
||||
export body=$(cat changelog.md)
|
||||
export tag=$(uv version --short --output-format text --bump {{ segment }})
|
||||
|
||||
git add pyproject.toml uv.lock
|
||||
git commit -m "Release version $tag"
|
||||
git push
|
||||
git tag v$tag
|
||||
|
||||
git push
|
||||
git push origin tag v$tag
|
||||
|
||||
uv build --wheel --clear
|
||||
export body=$(cat changelog.md)
|
||||
fj release create "v$tag" --tag "v$tag" --attach dist/*.whl --body "$body"
|
||||
|
||||
fj release create "v$tag: $release_name" --tag "v$tag" --attach dist/*.whl --body "$body"
|
||||
uv run twine upload --config-file ~/.config/pypirc --repository code.cbo dist/*.whl
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue