Review Apps for Jekyll sites

I’m new to CI and review apps, so maybe I’m just misunderstanding something. When I push a commit to a “staging” branch of a Jekyll site, I can see that it starts a build using the normal .gitlab-ci.yml file that my master branch has. However, after it passes I don’t see a link anywhere to view it. I was assuming that there would be a URL I can go to to see.

Where do I find this? Is there any? I use GitLab Pages.

1 Like

I’m also building static pages using Gitlab and it would indeed be helpful to view changes of these directly on Gitlab in the merge requests.

1 Like

to @arsbanach:
Have you look at Pipelines -> Environments ?

In .gitlab-ci.yml

  ...
  environment:
    name: staging
    url: http://your-link
  ...