mirror of
https://github.com/bit1001/tdl.git
synced 2024-12-26 06:34:58 +08:00
10 lines
282 B
Makefile
10 lines
282 B
Makefile
|
.PHONY: build
|
||
|
build:
|
||
|
goreleaser build --rm-dist --single-target --snapshot
|
||
|
@echo "go to '.tdl/dist' directory to see the package!"
|
||
|
|
||
|
.PHONY: packaging
|
||
|
packaging:
|
||
|
goreleaser release --skip-publish --auto-snapshot --rm-dist
|
||
|
@echo "go to '.tdl/dist' directory to see the packages!"
|