mirror of
https://github.com/peterbraden/node-opencv.git
synced 2025-12-08 19:45:55 +00:00
31 lines
750 B
Makefile
31 lines
750 B
Makefile
VERSION := $(shell node -e "console.log(require('./package.json').version)")
|
|
|
|
.PHONY: default release
|
|
|
|
# Add a default task so we don't release just because someone ran 'make'
|
|
default:
|
|
@echo "Did you mean to release a new version?"
|
|
@echo "If so, run 'make release'."
|
|
|
|
release:
|
|
@echo "Tagging release $(VERSION)"
|
|
@git tag -m "$(VERSION)" v$(VERSION)
|
|
|
|
@echo "Pushing tags to GitHub"
|
|
@git push --tags
|
|
|
|
@echo "Switching to osx-binaries branch"
|
|
@git checkout osx-binaries
|
|
|
|
@echo "Merging master into osx-binaries"
|
|
@git merge --no-ff --commit -m "Merge master into osx-binaries [publish binary]" master
|
|
|
|
@echo "Pushing osx-binaries"
|
|
@git push
|
|
|
|
@echo "Switching to master branch"
|
|
@git checkout master
|
|
|
|
@echo "Publishing to NPM"
|
|
@npm publish
|