This repository has been archived on 2022-09-04. You can view files and clone it, but cannot push or open issues or pull requests.
version.tribalwarshelp.com/.circleci/config.yml
2021-02-04 20:11:21 +01:00

29 lines
728 B
YAML

version: 2
jobs:
build:
docker:
- image: circleci/node:12.9.1-browsers
working_directory: ~/twhelp
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-version-website:latest .
# deploy the image
- run: docker push $DOCKER_LOGIN/twhelp-version-website:latest
workflows:
version: 2
deploy_prod:
jobs:
- build:
context: TWHelp
filters:
branches:
only:
- master