This repository has been archived on 2022-10-02. You can view files and clone it, but cannot push or open issues or pull requests.
dcbot-old/.circleci/config.yml

52 lines
1.5 KiB
YAML
Raw Normal View History

2021-02-06 10:09:18 +00:00
version: 2
jobs:
build_latest:
2021-02-06 10:09:18 +00:00
docker:
- image: circleci/golang:1.17
2021-02-06 10:09:18 +00:00
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 .
2021-02-06 10:09:18 +00:00
# deploy the image
- run: docker push $DOCKER_LOGIN/twhelp-dcbot:latest
build_version:
docker:
- image: circleci/golang:1.17
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:$(echo $CIRCLE_TAG | sed -r 's/^.{1}//') .
# deploy the image
- run: docker push $DOCKER_LOGIN/twhelp-dcbot:$(echo $CIRCLE_TAG | sed -r 's/^.{1}//')
2021-02-06 10:09:18 +00:00
workflows:
version: 2
deploy_latest:
2021-02-06 10:09:18 +00:00
jobs:
- build_latest:
2021-02-06 10:09:18 +00:00
context: TWHelp
filters:
branches:
only:
- master
deploy_version:
jobs:
- build_version:
context: TWHelp
filters:
tags:
only: /^v.*/
branches:
ignore: /.*/