Skip to content

Commit

Permalink
update makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
pourmand1376 committed Sep 23, 2023
1 parent 1666fcd commit 6dd6c47
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Makefile
Expand Up @@ -25,6 +25,17 @@ lint: ## lint main.ts file

alpha_version: ## create an alpha version
npm version prerelease --preid=alpha
git add .
git commit --amend --no-edit
git push
make prerelease

ALPHA_VERSION=$(shell jq -r '.version' manifest-beta.json)
prerelease: ## make a prerelease
echo "Version is $(ALPHA_VERSION)"
git tag $(ALPHA_VERSION) --force
git push origin $(ALPHA_VERSION) --force


patch_version: ## create a new patch version
npm version patch
Expand Down

0 comments on commit 6dd6c47

Please sign in to comment.