docker-hub-description-updater/.travis.yml

21 lines
450 B
YAML
Raw Normal View History

2019-09-16 19:36:27 +00:00
language: go
services:
- docker
jobs:
include:
2019-09-24 12:57:52 +00:00
- name: build-binaries
stage: build
2019-09-16 19:36:27 +00:00
script: make container-run/all
2019-09-24 12:57:52 +00:00
- name: deploy-container-image-latest
stage: deploy
2019-09-16 19:36:27 +00:00
script: make container-image/push
2019-09-24 12:57:52 +00:00
- name: deploy-container-image-tagged
stage: deploy
script: make container-image/push VERSION=${TRAVIS_TAG} CONTAINER_IMAGE_VERSION=${TRAVIS_TAG}
2019-09-16 19:36:27 +00:00
notifications:
email:
on_success: change
on_failure: change