add .circleci

This commit is contained in:
Dawid Wysokiński 2021-02-06 12:03:27 +01:00
parent 1af38e200f
commit a77d1cf53b
1 changed files with 29 additions and 0 deletions

29
.circleci/config.yml Normal file
View File

@ -0,0 +1,29 @@
version: 2
jobs:
build:
docker:
- image: circleci/golang:1.15
working_directory: ~/twhelpdcbot
steps:
- checkout
- setup_remote_docker
# start proprietary DB using private Docker image
# with credentials stored in the UI
- run: |
docker login -u $DOCKER_LOGIN -p $DOCKER_PASSWORD
# build the application image
- run: docker build -t $DOCKER_LOGIN/twhelp-dcbot:latest .
# deploy the image
- run: docker push $DOCKER_LOGIN/twhelp-dcbot:latest
workflows:
version: 2
deploy_prod:
jobs:
- build:
context: TWHelp
filters:
branches:
only:
- master