diff options
author | Valentin Popov <info@valentineus.link> | 2017-11-14 03:32:15 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2017-11-14 03:32:15 +0300 |
commit | e5a6959a2c8d9ed147bc49eecdde4545ba443d00 (patch) | |
tree | 8c51714e572b657243e6f178c04414e1531fbf70 | |
parent | 26abe9728d5eef27227e80b014050928f6bed6b4 (diff) | |
download | docker-meteor-e5a6959a2c8d9ed147bc49eecdde4545ba443d00.tar.xz docker-meteor-e5a6959a2c8d9ed147bc49eecdde4545ba443d00.zip |
Correcting the list of tasks
-rw-r--r-- | .travis.yml | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml index 1c21283..b03ba13 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,19 +9,20 @@ notifications: email: - "info@valentineus.link" -env: - - "IMAGE=./default/1.6" - - "IMAGE=./default/1.5" - - "IMAGE=./default/1.4" - - "IMAGE=./build/1.6" - - "IMAGE=./build/1.5" - - "IMAGE=./build/1.4" - jobs: include: - stage: test - script: docker build --tag "${TRAVIS_REPO_SLUG}" "${IMAGE}" + env: + - "IMAGE=./default/1.6" + - "IMAGE=./default/1.5" + - "IMAGE=./default/1.4" + - "IMAGE=./build/1.6" + - "IMAGE=./build/1.5" + - "IMAGE=./build/1.4" + script: + - docker build --tag "${TRAVIS_REPO_SLUG}" "${IMAGE}" - stage: deploy deploy: provider: script - script: "curl -H 'Content-Type: application/json' --data '{\"build\":true}' -X POST 'https://registry.hub.docker.com/u/valentineus/meteor/trigger/${TOKEN}/'"
\ No newline at end of file + script: + - "curl -H 'Content-Type: application/json' --data '{\"build\":true}' -X POST 'https://registry.hub.docker.com/u/valentineus/meteor/trigger/${TOKEN}/'"
\ No newline at end of file |