From: Kevin Day Date: Mon, 16 Jan 2023 16:23:51 +0000 (-0600) Subject: Update: Create a gitlab static site file based on documentation. X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=refs%2Fheads%2Fgitlab;p=kevux.org-website Update: Create a gitlab static site file based on documentation. This is a direct copy and paste of their example configuration with the branch name being the only change. see: https://docs.gitlab.com/ee/user/project/pages/introduction.html#specific-configuration-options-for-pages --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..e7df4ea --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,10 @@ +pages: + script: + - mkdir .public + - cp -r * .public + - mv .public public + artifacts: + paths: + - public + only: + - gitlab