Files
litmus-hub/.travis.yml
Karthik Satchitanand fbbc16c2a3 (chore)ci: stop chart version increment (#288)
Signed-off-by: ksatchit <karthik.s@mayadata.io>
2020-08-15 14:23:33 +05:30

11 lines
438 B
YAML

dist: xenial # ubuntu 16.04 distro
script:
# Install dependencies
- make deps
# It will ignore if travis ci committed, else works as it is.
#- author=`git log -1 --pretty=format:'%an'` && if [[ "$author" != "Travis CI" ]]; then make versionmaker; fi
- make combineExpCR
after_success:
# runs only when PR is merged and push the version file to master version
- if [[ $TRAVIS_PULL_REQUEST == 'false' ]]; then make push; fi