diff options
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4b220ca..eded231 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,9 +1,7 @@ -# The Docker image that will be used to build your app image: node:lts create-pages: pages: - publish: public - before_script: - - mkdir public + publish: dist script: - - cp index.html index.css favicon.ico icon.png *.js *.mjs public/ + - npm install + - npm run build
\ No newline at end of file |
