bump for build
This commit is contained in:
parent
2e4eb8ee5f
commit
0bd055f881
2 changed files with 25 additions and 1 deletions
24
justfile
24
justfile
|
|
@ -70,3 +70,27 @@ preview-release-notes:
|
|||
./scripts/get_release_notes.py "$VERSION" | less -R
|
||||
|
||||
release: create-release
|
||||
|
||||
build-pyapp:
|
||||
export PYAPP_PROJECT_NAME=krayt
|
||||
export PYAPP_PROJECT_VERSION=`hatch version`
|
||||
export PYAPP_DISTRIBUTION_SOURCE=~/git/krayt/dist/krayt-${PYAPP_PROJECT_VERSION}.tar.gz
|
||||
export PYAPP_DISTRIBUTION_EMBED=true
|
||||
|
||||
|
||||
echo "linting"
|
||||
hatch run lint-format
|
||||
|
||||
echo "Building pyapp"
|
||||
hatch build
|
||||
|
||||
echo "Uploading pyapp"
|
||||
hatch publish
|
||||
|
||||
cd ~/git/pyapp
|
||||
cargo build --release --quiet
|
||||
|
||||
|
||||
echo "Done"
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
__version__ = "0.3.0"
|
||||
__version__ = "0.3.0b0"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue