我正在尝试将基本的html文件部署到Gitlab页面。
我一直在使用the documentation,我克隆了this repo,当我将自己的html文件添加到public
目录时,唯一的变化就是。
这是我的.gitlab-ci.yml文件内容:
pages:
stage: deploy
script:
- mkdir .public
- cp -r * .public
- mv .public public
artifacts:
paths:
- public
only:
- master
管道成功,根据他们的文档,我应该在设置中看到一个页面链接,但这似乎永远不会显示。
感谢任何关于此的提示/建议。
也许图像不见了。这足够了,它对我有用。
image: alpine:latest
pages:
stage: deploy
when: manual
script:
- echo 'Nothing to do...'
artifacts:
paths:
- public/
only:
- master