从gitlab自动部署到heroku

时间:2018-05-07 00:18:23

标签: node.js reactjs heroku gitlab

大家好,我想知道是否有可能从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?

0 个答案:

没有答案