Skip to content
This repository is currently being migrated. It's locked while the migration is in progress.

Commit ae80af8

Browse files
committed
.travis.yaml: Do not skip tagged builds
1 parent 272e80a commit ae80af8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,11 @@ env:
1414
before_install:
1515
- |
1616
if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.md)|(\.MD)|(\.png)|(\.pdf)|^(doc/)|^(MAINTAINERS)|^(LICENSE)'; then
17+
# Do not skip if it's a tagged build.
18+
if [[ -z "$TRAVIS_TAG" ]]; then
1719
echo "Only doc files were updated, not running the CI."
1820
exit
21+
fi
1922
fi
2023
- sudo apt -y update && sudo apt install -y jq
2124
- go get github.com/golang/mock/gomock

0 commit comments

Comments
 (0)