Pipeline
In order to publish your liturgical website, you need to set up a CI/CD pipeline.
CI means “continuous integration” and CD means “continuous deployment”. You can think of a pipeline as a job that Gitlab runs on your behalf.
While logged into gitlab, and with your new project open:
- Click on the button “Set up CI/CD”.
- Click “Apply a template”.
- In the filter, type html.
- Click on HTML.
- Click on “Commit changes”.
Now that you have enabled the pipeline, each time you publish your website:
doxago publish
Gitlab will run a pipeline to update and publish your website.
In order to check the status of a pipeline, while logged into gitlab, and with your new project open:
- In the left sidebar menu, click on CI/CD, then Pipelines.
- You should see a Pipeline with a green “latest” label.
- When the status changes to “passed”, your web site has been updated.
After the status changes to “passed”, here is how to find the URL for your website:
- In the left sidebar menu, click on Settings, then Pages.
- You will see “Your pages are served under:” and the url for your website.
- Click on the url to view your published website.
- Also, copy and save the url somewhere so you can view your site later.
- It is possible to use a custom domain for your site. That is another topic in this manual.