Skip to content

Commit

Permalink
chore: Add make release-package and make release-package-dry-run
Browse files Browse the repository at this point in the history
  • Loading branch information
ericof committed Feb 18, 2022
1 parent 5951c59 commit dfb1e02
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,16 @@ test: ## Test code
.PHONY: test-all
test-all: check-prettier check-lint test ## Check lint and test code

.PHONY: release-package-dry-run
release-package-dry-run: ## Dry run of releasing this package to npm and Github
@echo "Release package @plone/blocks-conversion-tool (DRY RUN)"
@npx release-it --dry-run

.PHONY: release-package
release-package: ## Release this package to npm and Github
@echo "Release package @plone/blocks-conversion-tool"
@npx release-it

.PHONY: build-image
build-image: ## Build Docker Image
@echo "Building $(IMAGE_NAME):$(IMAGE_TAG)"
Expand Down

0 comments on commit dfb1e02

Please sign in to comment.