In CI, buidling and packaging ACL branch with a new tag for the deployment.

This commit is contained in:
Trisha Anand 2020-05-11 21:15:19 +05:30
parent 6cdab92bbe
commit 963a3388c3

View File

@ -37,6 +37,7 @@ maven-build:
- release
- master
- merge_requests
- feature/acl-spring-object
docker-package:
image: docker:dind
@ -64,6 +65,18 @@ docker-package-master:
only:
- master
docker-package-acl:
image: docker:dind
services:
- docker:19.03.5-dind #change this back to docker-dind
stage: package
script:
- docker build -t appsmith/appsmith-server:acl .
- docker login -u $DOCKER_HUB_USERNAME -p $DOCKER_HUB_ACCESS_TOKEN
- docker push appsmith/appsmith-server:acl
only:
- feature/acl-spring-object
heroku-deploy:
stage: deploy
image: tmaier/dpl:latest