mirror of
https://gitlab.com/MisterBiggs/secure-act-2.0.git
synced 2025-08-17 16:24:43 +00:00
- 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
11 lines
166 B
YAML
11 lines
166 B
YAML
pages:
|
|
stage: deploy
|
|
script:
|
|
- mkdir public
|
|
- cp -r * public/ || true
|
|
- rm -rf public/public
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- main |