mirror of
https://github.com/shimataro/ssh-key-action.git
synced 2025-06-19 22:52:10 +10:00
22 lines
300 B
Makefile
22 lines
300 B
Makefile
SHELL := /bin/bash
|
|
|
|
test:
|
|
@node test/runner.js
|
|
|
|
release-major: test
|
|
npm version major -m "Release %s"
|
|
git push
|
|
npm publish
|
|
|
|
release-minor: test
|
|
npm version minor -m "Release %s"
|
|
git push
|
|
npm publish
|
|
|
|
release-patch: test
|
|
npm version patch -m "Release %s"
|
|
git push
|
|
npm publish
|
|
|
|
.PHONY: test
|
|
|