Skip to content

Commit 4c6038e

Browse files
committed
Fix continuous deployment through go version restriction
1 parent eaa247b commit 4c6038e

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.goreleaser.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,17 @@ builds:
99
goarch:
1010
- amd64
1111
- 386
12+
13+
# Changelog customization
14+
changelog:
15+
filters:
16+
# commit messages matching the regexp listed here will be removed from
17+
# the changelog
18+
# Default is empty
19+
exclude:
20+
- typo
21+
- (?i)foo
22+
1223
# Archive customization
1324
archive:
1425
wrap_in_directory: true

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ deploy:
1919
script: curl -sL https://git.io/goreleaser | bash
2020
on:
2121
tags: true
22-
condition: $TRAVIS_OS_NAME = linux
22+
condition: $TRAVIS_OS_NAME = linux && $TRAVIS_GO_VERSION = "1.10.1"

0 commit comments

Comments
 (0)