mirror of
https://github.com/schpet/linear-cli.git
synced 2026-09-14 14:26:50 +08:00
16 lines
541 B
Makefile
16 lines
541 B
Makefile
dev *args:
|
|
deno run main.ts {{ args }}
|
|
|
|
# release a major, minor or patch version
|
|
release level:
|
|
svbump {{ level }} version deno.json
|
|
svbump "$(svbump read version deno.json)" package.version dist-workspace.toml
|
|
git commit deno.json dist-workspace.toml -m "chore: Release linear-cli version $(svbump read version deno.json)"
|
|
git tag "v$(svbump read version deno.json)"
|
|
|
|
@echo "tagged v$(svbump read version deno.json)"
|
|
@echo
|
|
@echo "run this to release it:"
|
|
@echo
|
|
@echo " git push origin HEAD --tags"
|