Gitlab Pages throw 404 when accessed
问题 I have a group project with the following name (hosted in Gitlab): gitlab.com/my-group/my-project. I have generated coverage reports during testing and saved them as artifacts using Gitlab CI. Here is Gitlab CI config: test: stage: test image: node:11 before_script: - npm install -g yarn - yarn cache: paths: - node_modules/ script: - yarn lint - yarn test --all --coverage src/ except: - tags artifacts: paths: - coverage/ coverage: '/Statements\s+\:\s+(\d+\.\d+)%/' deploy-pages: stage: deploy