diff --git a/.gitlab-ci.yaml b/.gitlab-ci.yaml deleted file mode 100644 index faa5d16acab1264f96c6b71dea8b2c1d05d8974d..0000000000000000000000000000000000000000 --- a/.gitlab-ci.yaml +++ /dev/null @@ -1,13 +0,0 @@ -image: alpine:latest # Using a minimal Alpine Linux image - -pages: - script: - - mkdir -p public # Ensure the public folder exists - - cp index.html public/ # Move your HTML file into the public folder - artifacts: - paths: - - public # GitLab Pages serves files from 'public' - only: - - main # Runs this job only on the main branch - -