Skip to content

Commit

Permalink
ci(client,server): fixed pushing package tags for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
szattila98 committed Jul 18, 2023
1 parent 1a1e1cd commit 0cd02ed
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "binge-at-home",
"version": "0.1.0",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "nuxt build",
Expand Down
4 changes: 2 additions & 2 deletions cog.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ branch_whitelist = ["main"]
pre_bump_hooks = []
post_bump_hooks = [
"git push",
"git push origin {{version}}"
"git push origin --tags"
]

[commit_types]
Expand All @@ -22,7 +22,7 @@ authors = [
[bump_profiles]

[packages]
client = { path = "client", pre_bump_hooks = [ "npm ci", "npm version {{version}} --allow-same-version" ] }
client = { path = "client", pre_bump_hooks = [ "npm ci", "npm version {{version}}" ] }
server = { path = "server", pre_bump_hooks = [ "cargo set-version {{version}}" ] }

[git_hooks.pre-push]
Expand Down

0 comments on commit 0cd02ed

Please # to comment.