diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ed34bce813e49156bcb3999e19291835cc18302b..6c70e9a89e30c9995ffdea8492bbba16f81d6eae 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,2 +1,10 @@ -# The Docker image that will be used to build your app -image: node:lts +pages: + script: + - mkdir .public + - mv * .public + - mv .public public + artifacts: + paths: + - public + only: + - main