Starter justfile that will hopefully replace make
This commit is contained in:
parent
994a629401
commit
ab9506c4f6
13
Justfile
Normal file
13
Justfile
Normal file
@ -0,0 +1,13 @@
|
||||
default:
|
||||
@echo "Run: just patch|minor|major"
|
||||
|
||||
major: sqlx-prepare
|
||||
minor: sqlx-prepare
|
||||
patch: sqlx-prepare
|
||||
|
||||
sqlx-prepare:
|
||||
cd server; cargo sqlx prepare && git add .sqlx; git commit -m "cargo sqlx prepare" .sqlx || true
|
||||
|
||||
|
||||
_release level:
|
||||
cargo-release release -x {{ level }} --workspace
|
||||
Loading…
x
Reference in New Issue
Block a user