From e6d1cc3df7888e16ef75870c6f3261af08c8c2bc Mon Sep 17 00:00:00 2001 From: Anson Biggs Date: Sun, 10 Aug 2025 23:20:26 -0600 Subject: [PATCH] Update GitLab CI to copy all files to public directory - Changed from copying specific files to copying all files - Added cleanup step to remove nested public directory - This ensures all project files are deployed to GitLab Pages --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c5ac426..9b9d892 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,8 +2,8 @@ pages: stage: deploy script: - mkdir public - - cp index.html public/ - - cp calculations.js public/ + - cp -r * public/ || true + - rm -rf public/public artifacts: paths: - public