travis: disable signing on windows

This commit is contained in:
Jarek Kowalski
2020-02-17 20:18:29 -08:00
parent 35a7bb6038
commit 98e877f437

View File

@@ -103,6 +103,11 @@ endif
ifeq ($(TRAVIS_TAG),)
# not a tagged release
GORELEASER_OPTIONS+=--snapshot
else
ifeq ($(TRAVIS_OS_NAME),windows)
# signing does not work on Windows on Travis
GORELEASER_OPTIONS+=--skip-sign
endif
endif
goreleaser: $(goreleaser)