summaryrefslogtreecommitdiff
path: root/.circleci/config.yml
blob: 3c39e7a4926c9ee11116eea40c089891d5d1f550 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
version: 2.1

orbs:
  heroku: circleci/heroku@1.2.3

jobs:
  build_and_push:
    executor: heroku/default
    steps:
      - checkout
      - setup_remote_docker
      - heroku/install
      - heroku/check-authentication
      - run: heroku container:login -v
      - run: heroku container:push web --app bsu-fantom 

workflows:
  build_and_push:
    jobs:
      - build_and_push