From 2606036aabca8138d5929ebc2b4c9542e0e14882 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Mon, 16 Jan 2023 10:23:51 -0600 Subject: [PATCH] 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 --- .gitlab-ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitlab-ci.yml 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 -- 2.47.3