Skip to content

Commit

Permalink
fix(build): move signature to release options
Browse files Browse the repository at this point in the history
  • Loading branch information
ssube committed Feb 14, 2022
1 parent 2b72af5 commit b31767e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Expand Up @@ -151,12 +151,14 @@ license-check: ## check license status
licensed cache
licensed status

RELEASE_OPTS ?= --sign

release: ## create a release
$(NODE_BIN)/standard-version --sign $(RELEASE_OPTS)
$(NODE_BIN)/standard-version $(RELEASE_OPTS)
GIT_OPTIONS=--tags $(MAKE) git-push

release-dry: ## test creating a release
$(NODE_BIN)/standard-version --sign $(RELEASE_OPTS) --dry-run
$(NODE_BIN)/standard-version $(RELEASE_OPTS) --dry-run

upload-climate:
cc-test-reporter format-coverage -t lcov -o $(TARGET_PATH)/coverage/codeclimate.json -p $(ROOT_PATH) $(TARGET_PATH)/coverage/lcov.info
Expand Down

0 comments on commit b31767e

Please sign in to comment.