We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11b5ad3 commit 56836b5Copy full SHA for 56836b5
1 file changed
.travis.yml
@@ -58,6 +58,16 @@ jobs:
58
skip_cleanup: true
59
on:
60
tags: true
61
+ - stage: Publish latest Docker Image on Daily Build
62
+ before_deploy:
63
+ - export TRAVIS_TAG=$(git describe --tags)
64
+ script:
65
+ - echo "Publish latest Docker Images to DockerHub"
66
+ deploy:
67
+ - provider: script
68
+ script: make TAG=${TRAVIS_TAG} RELEASE_VER=latest release
69
+ on:
70
+ condition: $TRAVIS_EVENT_TYPE = cron
71
notifications:
72
webhooks: https://www.travisbuddy.com/
73
on_success: never
0 commit comments