chore: update build script
All checks were successful
Publish package / build_and_publish (push) Successful in 29s

This commit is contained in:
Alexander Navarro 2025-02-14 15:05:46 -03:00
parent f17fab7a04
commit 812e55e13a
3 changed files with 6 additions and 8 deletions

View file

@ -8,16 +8,13 @@ branch_whitelist = []
skip_ci = "[skip ci]"
skip_untracked = false
pre_bump_hooks = []
post_bump_hooks = [
"git push",
"git push origin {{version_tag}}",
]
post_bump_hooks = ["git push", "git push origin {{version_tag}}"]
pre_package_bump_hooks = [
"echo 'bump package {{package}} to {{version}}'",
"sed -E -i 's/(\"version\":) \"[0-9.]{5}\"/\\1 \"{{version}}\"/gi' package.json",
"bun run ci:publish",
]
post_package_bump_hooks = []
post_package_bump_hooks = ["git push", "git push origin {{version_tag}}"]
[git_hooks]