mirror of
https://github.com/docker/actions-toolkit.git
synced 2024-11-23 03:16:09 +08:00
3d197dfdf1
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
15 lines
223 B
Makefile
15 lines
223 B
Makefile
PUBLISH_VERSION ?=
|
|
|
|
ifndef PUBLISH_VERSION
|
|
$(error PUBLISH_VERSION is not set)
|
|
endif
|
|
|
|
.PHONY: all
|
|
all:
|
|
|
|
.PHONY: publish
|
|
publish:
|
|
yarn install
|
|
yarn build
|
|
yarn publish --no-git-tag-version --new-version $(PUBLISH_VERSION)
|