13321. Deploy Astro to Gitlab Pages (jaketrent.com)
Here are some instructions on how to deploy an astro.build site to Gitlab pages.Gitlab pages deployment is controlleed via your .gitlab-ci.yml file. Everything is in there. The file contents might look like this:image: node:19.1.0 pages: script: - npm ci - npm run build - rm -rf public - mv dist pub...