diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4229fe8042f39d8633d1d63a1b5f387fad7fc777..7a9e01805c969a437aa69ef3a0c6666f0f166f34 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,11 @@ -# The Docker image that will be used to build your app -image: node:lts -# Functions that should be executed before the build script is run -before_script: - - npm ci +pages: + stage: deploy + script: + - mkdir .public + - cp -r * .public + - mv .public public + artifacts: + paths: + - public + only: + - main