Host static website with GitLab pages

Viewed 9340

I need to host a static website with gitlab pages. My repo is a private repository (or project) and the .gitlab-ci.yml that I tried to use looks like this:

image: gpecchio:BeCall
pages:
  stage: deploy
  script:
  - echo 'Nothing to do...'
  artifacts:
    paths:
    - private
  only:
  - master

I believe that the image is wrong but I have no idea about what to change it to. I did some research but there aren't that many tutorials online for GitLab pages. How could I change this file to make it work?

Other info that might be useful:
GitLab username: gpecchio
GitLab project name: BeCall
GitLab project url: https://gitlab.com/gpecchio/BeCall

1 Answers
Related