diff options
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..3c39e7a --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,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 |