chore: setup ci workflow
Some checks failed
Publish package / build_and_publish (push) Failing after 0s
Some checks failed
Publish package / build_and_publish (push) Failing after 0s
update workflows update workflows update workflows update workflows update config add cog config
This commit is contained in:
parent
cf0b4011d1
commit
be962aa7c9
8 changed files with 112 additions and 10 deletions
39
cog.toml
Normal file
39
cog.toml
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
from_latest_tag = true
|
||||
ignore_merge_commits = false
|
||||
disable_changelog = false
|
||||
disable_bump_commit = false
|
||||
tag_prefix = "v"
|
||||
generate_mono_repository_global_tag = true
|
||||
branch_whitelist = []
|
||||
skip_ci = "[skip ci]"
|
||||
skip_untracked = false
|
||||
pre_bump_hooks = []
|
||||
post_bump_hooks = []
|
||||
pre_package_bump_hooks = [
|
||||
"echo 'bump package {{package}} to {{version}}'",
|
||||
"sed -E -i 's/(\"version\":) \"[0-9.]{5}\"/\\1 \"{{version}}\"/gi' package.json",
|
||||
]
|
||||
post_package_bump_hooks = []
|
||||
|
||||
[git_hooks]
|
||||
|
||||
[commit_types]
|
||||
|
||||
[changelog]
|
||||
path = "CHANGELOG.md"
|
||||
authors = []
|
||||
|
||||
[bump_profiles.latest]
|
||||
pre_package_bump_hooks = [
|
||||
"bun run ci:publish --tag latest",
|
||||
]
|
||||
|
||||
[bump_profiles.next]
|
||||
pre_package_bump_hooks = [
|
||||
"bun run ci:publish --tag next",
|
||||
]
|
||||
|
||||
[packages]
|
||||
"@mini-strap/core" = { path = "packages/core" }
|
||||
"@mini-strap/components" = { path = "packages/components" }
|
||||
"@mini-strap/website" = { path = "packages/website", public_api = false }
|
||||
Loading…
Add table
Add a link
Reference in a new issue