summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorCasey Lee <cplee@nektos.com>2020-03-07 02:08:07 +0100
committerCasey Lee <cplee@nektos.com>2020-03-07 02:08:07 +0100
commitbd6f232b2051c96ea4e43245831633590d32c777 (patch)
tree2fd90f1d4964e227e9ca3e8a7f830846ec782856 /Makefile
parentAdd flags to README (#138) (diff)
downloadforgejo-act-bd6f232b2051c96ea4e43245831633590d32c777.tar.xz
forgejo-act-bd6f232b2051c96ea4e43245831633590d32c777.zip
fix build for windows
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 1 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index a112b54..ad0e211 100644
--- a/Makefile
+++ b/Makefile
@@ -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