我的gitlab页面无法继续部署,尽管编译传递说缺少工件。我目前正在关注https://about.gitlab.com/features/pages/的教程 并使用模板https://gitlab.com/pages/plain-html
请看截图: screenshot of job screenshot of compose file
你可以在这里查看我的回购:https://gitlab.com/jairus.jsx/portfolio 非常感谢任何帮助,谢谢!
答案 0 :(得分:1)
所有遇到相同错误的人只需更新您的.gitlab-ci.yml
:)
image: alpine:latest
pages:
stage: deploy
script:
- mkdir .public
- cp -r * .public
- mv .public public
artifacts:
paths:
- public
only:
- master
这样,每次构建时都会更新公用文件夹