I have a GitLab CI configuration that is valid:
pages:
stage: deploy
script:
- mkdir .public
- cp -r * .public
- mv .public public
artifacts:
paths:- public
only:
- public
- master
The pipeline lists my pages setup as passed. How do I determine my pages URL? The project is located on something similar to: host.server.com/gitlab/username/projectname. I’ve tried combinations of the examples listed here GitLab Pages domain names, URLs, and base URLs | GitLab but can’t get any to work.
I thought I would be able to find the URL in settings but I don’t see a dropdown for “Pages”. My admin doesn’t see one either.