diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fdd6f8a90..02edd832e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,11 +1,10 @@ -image: alpine:latest - pages: - stage: deploy script: - - echo 'Nothing to do...' + - mkdir .public + - cp -r web/* .public + - mv .public public artifacts: paths: - - web + - public only: - master