diff options
author | Casey Lee <cplee@nektos.com> | 2020-03-07 02:08:07 +0100 |
---|---|---|
committer | Casey Lee <cplee@nektos.com> | 2020-03-07 02:08:07 +0100 |
commit | bd6f232b2051c96ea4e43245831633590d32c777 (patch) | |
tree | 2fd90f1d4964e227e9ca3e8a7f830846ec782856 /Makefile | |
parent | Add flags to README (#138) (diff) | |
download | forgejo-act-bd6f232b2051c96ea4e43245831633590d32c777.tar.xz forgejo-act-bd6f232b2051c96ea4e43245831633590d32c777.zip |
fix build for windows
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -23,7 +23,7 @@ installer: @GO111MODULE=off go get github.com/goreleaser/godownloader godownloader -r nektos/act -o install.sh -promote: vendor +promote: @git fetch --tags @echo "VERSION:$(VERSION) IS_SNAPSHOT:$(IS_SNAPSHOT) NEW_VERSION:$(NEW_VERSION)" ifeq (false,$(IS_SNAPSHOT)) @@ -36,8 +36,3 @@ ifneq ($(shell git status -s),) endif git tag -a -m "releasing v$(NEW_VERSION)" v$(NEW_VERSION) git push origin v$(NEW_VERSION) - -vendor: - go mod vendor - -.PHONY: vendor |