我的gitlab页面无法继续部署,尽管已通过的构建说缺少工件。我目前正在学习来自https://about.gitlab.com/features/pages/的教程,并使用模板https://gitlab.com/pages/plain-html
您可以在这里查看我的回复:https://gitlab.com/jairus.jsx/portfolio任何帮助都将是非常感谢的!
发布于 2018-05-07 15:36:18
对于所有经历相同错误的人,只需更新您的.gitlab-ci.yml :)
image: alpine:latest
pages:
stage: deploy
script:
- mkdir .public
- cp -r * .public
- mv .public public
artifacts:
paths:
- public
only:
- master这样,每次构建时,您的公用文件夹都会得到更新。
https://stackoverflow.com/questions/47908334
复制相似问题