diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 32eff38d5eb8fa436c1637c2d344dfec347d3758..9a8646956ac257f2a34f646ee40fe651c4bb1d59 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,2 +1,14 @@ -# The Docker image that will be used to build your app -image: debian:bookworm +stages: + - deploy + +pages: + stage: deploy + image: busybox:latest + script: + - mv ./* public/ + artifacts: + paths: + - public + rules: + - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH + \ No newline at end of file