大家好,我想知道是否有可能从gitlab自动部署到heroku(反应应用程序),现在这是我的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
有没有办法将构建的proyect推送到heroku?