chore: add build step
Some checks failed
Publish package / build_and_publish (push) Failing after 20s

This commit is contained in:
Alexander Navarro 2025-02-18 16:41:11 -03:00
parent 8ef4d8408c
commit 74d0f81a6c
3 changed files with 56 additions and 3 deletions

View file

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