mirror of https://github.com/status-im/migrate.git
add make release
This commit is contained in:
parent
f474e4cae1
commit
f47436e158
|
@ -23,9 +23,9 @@ script:
|
||||||
|
|
||||||
after_success:
|
after_success:
|
||||||
- goveralls -service=travis-ci -coverprofile .coverage/combined.txt
|
- goveralls -service=travis-ci -coverprofile .coverage/combined.txt
|
||||||
|
- make list-external-deps > dependency_tree.txt && cat dependency_tree.txt
|
||||||
|
|
||||||
before_deploy:
|
before_deploy:
|
||||||
- make list-external-deps > dependency_tree.txt && cat dependency_tree.txt
|
|
||||||
- make build-cli
|
- make build-cli
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
|
|
8
Makefile
8
Makefile
|
@ -82,6 +82,12 @@ rewrite-import-paths:
|
||||||
find . -name '*.go' -type f -execdir sed -i '' s%\"github.com/mattes/migrate%\"github.com/$(REPO_OWNER)/migrate%g '{}' \;
|
find . -name '*.go' -type f -execdir sed -i '' s%\"github.com/mattes/migrate%\"github.com/$(REPO_OWNER)/migrate%g '{}' \;
|
||||||
|
|
||||||
|
|
||||||
|
# make release V=0.0.0
|
||||||
|
release:
|
||||||
|
git tag v$(V)
|
||||||
|
@read -p "Press enter to confirm and push to origin ..." && git push origin v$(V)
|
||||||
|
|
||||||
|
|
||||||
define external_deps
|
define external_deps
|
||||||
@echo -- $(1)
|
@echo -- $(1)
|
||||||
@go list -f '{{join .Deps "\n"}}' $(1) | grep -v github.com/$(REPO_OWNER)/migrate | xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}}'
|
@go list -f '{{join .Deps "\n"}}' $(1) | grep -v github.com/$(REPO_OWNER)/migrate | xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}}'
|
||||||
|
@ -90,7 +96,7 @@ endef
|
||||||
|
|
||||||
|
|
||||||
.PHONY: build-cli clean test-short test test-with-flags deps html-coverage \
|
.PHONY: build-cli clean test-short test test-with-flags deps html-coverage \
|
||||||
restore-import-paths rewrite-import-paths list-external-deps
|
restore-import-paths rewrite-import-paths list-external-deps release
|
||||||
|
|
||||||
SHELL = /bin/bash
|
SHELL = /bin/bash
|
||||||
RAND = $(shell echo $$RANDOM)
|
RAND = $(shell echo $$RANDOM)
|
||||||
|
|
Loading…
Reference in New Issue