From 883894b900a92ae266b1ed024b8755d8b9a24a7c Mon Sep 17 00:00:00 2001 From: Sameh Abouel-saad Date: Wed, 29 May 2024 13:21:03 +0300 Subject: [PATCH] add makefile version-bump --- Makefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4a570fe --- /dev/null +++ b/Makefile @@ -0,0 +1,22 @@ +.PHONY: version-bump + +# usage: > type=patch make version-bump +# usage: > type=minor make version-bump +# usage: > type=major make version-bump +version-bump: + set -e; \ + if [ "$(type)" = "patch" ] || [ "$(type)" = "minor" ] || [ "$(type)" = "major" ]; then \ + default_branch=$$(git symbolic-ref refs/remotes/origin/HEAD | sed 's@^refs/remotes/origin/@@'); \ + git checkout $$default_branch; \ + git pull origin $$default_branch; \ + new_version=$$(npx semver -i $(type) $$(jq -r .version package.json)); \ + branch_name="$$default_branch-bump-version-to-$$new_version"; \ + git checkout -b $$branch_name; \ + jq ".version = \"$$new_version\"" package.json > temp.json && mv temp.json package.json; \ + sed -i "s/^appVersion: .*/appVersion: '$$new_version'/" indexer/chart/Chart.yaml; \ + sed -i "s/^appVersion: .*/appVersion: '$$new_version'/" processor-chart/Chart.yaml; \ + git add processor-chart/Chart.yaml indexer/chart/Chart.yaml package.json ; \ + git commit -m "Bump version to $$new_version"; \ + else \ + echo "Invalid version type. Please use patch, minor, or major."; \ + fi