Continuous integration 即使我的CI building公用文件夹成功运行,自托管GitLab页面也不会显示在设置页面上

Continuous integration 即使我的CI building公用文件夹成功运行,自托管GitLab页面也不会显示在设置页面上,continuous-integration,gitlab,gitlab-ci,gitlab-ci-runner,Continuous Integration,Gitlab,Gitlab Ci,Gitlab Ci Runner,我想在我的自托管GitLab服务器上使用GitLab页面,这是我的.GitLab ci.yml文件 image: node:12.16.1-alpine3.10 before_script: - pwd - which nodejs - nodejs -v - which npm - npm -v pages: cache: paths: - node_modules/ script: - rm -rf package-lock.jso

我想在我的自托管GitLab服务器上使用GitLab页面,这是我的
.GitLab ci.yml
文件

image: node:12.16.1-alpine3.10

before_script:
  - pwd
  - which nodejs
  - nodejs -v
  - which npm
  - npm -v

pages:
  cache:
    paths:
      - node_modules/
  script:
    - rm -rf package-lock.json
    - npm install
    - npm run storybook:build # This will build my website at public folder
  artifacts:
    paths:
      - public
  only:
    - master
我的CI运行成功,我甚至可以下载包含我的公用文件夹的工件

但是我没有看到
设置/Pages
选项,所以我不知道我的网站的公共URL是什么


我错过了什么配置?

如果您在自托管服务器上没有看到
设置/页面
,您启用了吗?我想我没有,谢谢。如果您在自托管服务器上没有看到
设置/页面
,您启用了吗?我想我没有,谢谢。