mirror of
https://github.com/playmean/obsidian-event-highlight-plugin.git
synced 2026-07-22 05:44:13 +00:00
7 lines
232 B
Bash
Executable file
7 lines
232 B
Bash
Executable file
#!/bin/bash
|
|
|
|
VERSION=`npx semverity bump --tidy`
|
|
|
|
npx semverity patch --files package.json:version package-lock.json:version,packages..version manifest.json:version --tidy --commit bump
|
|
|
|
git tag $VERSION && git push origin $VERSION
|