mirror of
https://github.com/docker/actions-toolkit.git
synced 2024-11-23 03:16:09 +08:00
c8aae7be2d
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
16 lines
264 B
Makefile
16 lines
264 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 run copy
|
|
cd src && yarn publish --no-git-tag-version --access public --new-version $(PUBLISH_VERSION)
|