mirror of
https://github.com/octoleo/plantuml-server.git
synced 2025-01-03 13:07:23 +00:00
Create separate tags for jetty and tomcat
This commit is contained in:
parent
749cdfb7ab
commit
10707c4df7
23
.travis.yml
23
.travis.yml
@ -10,6 +10,8 @@ services:
|
|||||||
|
|
||||||
stages:
|
stages:
|
||||||
- build
|
- build
|
||||||
|
- name: docker-tag
|
||||||
|
if: tag IS present
|
||||||
- name: docker-push
|
- name: docker-push
|
||||||
if: branch = master
|
if: branch = master
|
||||||
|
|
||||||
@ -26,6 +28,27 @@ jobs:
|
|||||||
skip_cleanup: true
|
skip_cleanup: true
|
||||||
on:
|
on:
|
||||||
tags: true
|
tags: true
|
||||||
|
|
||||||
|
- stage: docker-tag
|
||||||
|
name: jetty
|
||||||
|
script:
|
||||||
|
- if [ -z "$TRAVIS_TAG" ]; then exit 0; fi
|
||||||
|
- docker login -u $DOCKER_LOGIN -p $DOCKER_PASSWORD
|
||||||
|
- docker build --pull -t plantuml/plantuml-server:jetty-$TRAVIS_TAG -f Dockerfile.jetty .
|
||||||
|
- docker push plantuml/plantuml-server:jetty-$TRAVIS_TAG
|
||||||
|
on:
|
||||||
|
tags: true
|
||||||
|
|
||||||
|
- stage: docker-tag
|
||||||
|
name: tomcat
|
||||||
|
script:
|
||||||
|
- if [ -z "$TRAVIS_TAG" ]; then exit 0; fi
|
||||||
|
- docker login -u $DOCKER_LOGIN -p $DOCKER_PASSWORD
|
||||||
|
- docker build --pull -t plantuml/plantuml-server:tomcat-$TRAVIS_TAG -f Dockerfile.tomcat .
|
||||||
|
- docker push plantuml/plantuml-server:tomcat-$TRAVIS_TAG
|
||||||
|
on:
|
||||||
|
tags: true
|
||||||
|
|
||||||
- stage: docker-push
|
- stage: docker-push
|
||||||
name: jetty
|
name: jetty
|
||||||
script:
|
script:
|
||||||
|
Loading…
Reference in New Issue
Block a user