diff --git a/Taskfile.yml b/Taskfile.yml index 9802753..4f5ed6f 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -34,9 +34,10 @@ tasks: esclient:bump: dir: ./libs/es-client + internal: true cmds: - - pnpm version patch - - git add package.json - - git commit -m "chore: bump version to {{.VERSION}} [skip ci]" + - devbox run bump + - git add . + - git commit -m "(chore) bump version" - git push silent: true diff --git a/libs/es-client/devbox.json b/libs/es-client/devbox.json index 3643762..a8ddad0 100644 --- a/libs/es-client/devbox.json +++ b/libs/es-client/devbox.json @@ -14,6 +14,9 @@ ], "publish": [ "pnpm publish" + ], + "bump": [ + "pnpm version patch" ] } }