Skip to content

Commit

Permalink
Merge pull request #84 from Duddino/makefile-tag
Browse files Browse the repository at this point in the history
Add tag to makefile
  • Loading branch information
Duddino authored Apr 8, 2024
2 parents 2037df9 + 8e6f08e commit d37aa8f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
TAG?=latest

.PHONY: all
all: pkg pkg_multicore js/pivx_shield.js js/README.md

Expand Down Expand Up @@ -26,9 +28,9 @@ js/node_modules: js/package.json

.PHONY: publish
publish: all
cd pkg; npm publish
cd pkg_multicore; npm publish
cd js; npm publish
cd pkg; npm publish --tag $(TAG)
cd pkg_multicore; npm publish --tag $(TAG)
cd js; npm publish --tag $(TAG)

.PHONE: pack
pack: all
Expand Down

0 comments on commit d37aa8f

Please sign in to comment.