Hi guys i was wondering if it is possible to make automatic deploys from gitlab to heroku (react app), right now this is my gitlab-ci
image: node:8.10.0-alpine
cache:
  key: "alpine"
  paths:
    - node_modules/
before_script:
  - npm install
build:
  stage: build
  artifacts:
    paths:
      - dist/
  script:
    - npm run build
  only:
    - master
  tags:
    - docker
is there a way to push the builded proyect to heroku?
