如何在GitLab Pages上部署plain-html网站

时间:2017-12-25 10:22:34

标签: deployment gitlab

我有纯HTML网站,gulp构建的文件位于/docs文件夹中。

我在官方网页中找到了这个回复https://gitlab.com/pages/plain-html并尝试了它,将/public中的.gitlab-ci.yml目录更改为/docs目录,并出现错误:CI在构建时显示failed错误。

这是我的.gitlab-ci.yml

image: alpine:latest

pages:
  stage: deploy
  script:
  - echo 'Nothing to do...'
  artifacts:
    paths:
    - docs
  only:
  - master

我做错了什么?

1 个答案:

答案 0 :(得分:0)

public文件夹是必需的。无论如何,您都无法将文件放在其他文件夹中。