在gitlab Pages上更改部署根目录

时间:2017-01-14 19:44:22

标签: git deployment gitlab gitlab-pages

我一直在使用.gitlab-ci.yml模板文件创建gitlab页面:

# This file is a template, and might need editing before it works on your project.
# Full project: https://gitlab.com/user/project
pages:
  stage: deploy
  script:
  - mkdir .public
  - cp -r * .public
  - mv .public public
  artifacts:
    paths:
    - public
  only:
  - master

到目前为止,它在repo root上运行index.html文件。

问题:我有一个repo,其中生产文件位于dist/文件夹中。

如何更改部署以读取该文件夹上的文件而不是读取根目录?

- /src
- /dist 
---- index.html ---> i want to set this as root
---- assets/ 
.gitignore
README.md
gulpfile.js
package.json

----> gitlab is trying to find index.html on the root

1 个答案:

答案 0 :(得分:2)

你不能直接这样做,但你可以使用以下技巧/黑客:

html具有以下元标记:

<meta http-equiv="refresh" content="0;url=http://repo.github.io/folder/index.html" />

将其作为index.html提交,它会将索引页面重定向到您在本地gh-pages分支内所需的任何内部文件。

http-equiv="refresh"会将页面重定向到您想要的任何所需位置。