成功管道后,“页面”未显示在“设置”中

问题描述 投票:0回答:1

我正在尝试将基本的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

管道成功,根据他们的文档,我应该在设置中看到一个页面链接,但这似乎永远不会显示。

感谢任何关于此的提示/建议。

gitlab gitlab-ci
1个回答
1
投票

也许图像不见了。这足够了,它对我有用。

image: alpine:latest

pages:
  stage: deploy
  when: manual
  script:
  - echo 'Nothing to do...'
  artifacts:
    paths:
    - public/
  only:
  - master
© www.soinside.com 2019 - 2024. All rights reserved.