Deploy to public/
and…
…create an artifact
Create a file called index.html
<html><body>
<h1>GitLab Pages</h1>Test
</body></html>
Create a files called .gitlab-ci.yml
pages:
script:
- mkdir public
- cp index.html public
artifacts:
paths:
- public