我想在自托管的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成功运行,我什至可以下载包含我的公用文件夹的工件。
但是我没有看到Setting/Pages
选项,所以我不知道我的网站的公共URL是什么。
我错过了什么配置?