我一直在使用.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
答案 0 :(得分:2)
你不能直接这样做,但你可以使用以下技巧/黑客:
html
具有以下元标记:
<meta http-equiv="refresh" content="0;url=http://repo.github.io/folder/index.html" />
将其作为index.html提交,它会将索引页面重定向到您在本地gh-pages
分支内所需的任何内部文件。
http-equiv="refresh"
会将页面重定向到您想要的任何所需位置。