From c0198c8550abe2ab16738c4a47b99a2883fd32a5 Mon Sep 17 00:00:00 2001
From: pinyili2 <pinyili2@illinois.edu>
Date: Sat, 29 Mar 2025 22:36:23 -0500
Subject: [PATCH] add runner yml

---
 .gitlab-ci.yml | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2566d7c..887c63c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,10 +1,13 @@
 pages:
-  stage: deploy
-  image: busybox:latest
+  tags:
+    - shell  # This matches your existing runner's executor
   script:
-    - mv _build/html public
+    - mkdir -p public
+    # Add your build commands here, for example:
+    - cp -r docs/_build/html/* public/  # Adjust paths as needed
   artifacts:
     paths:
       - public
-  rules:
-    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
+  # Optional: make it only run manually to prevent automatic deployments
+  when: manual
+
-- 
GitLab