diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 44ae6140572c39024aed8f917fd986a0758bce9d..a23ca0ecc5e9f233fc5b2db313bdf3efab58be20 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,14 +2,16 @@ stages:
   - build
   - publish
 
+image: node:latest
+
 build-and-clean:
   stage: build
-  image: node:latest
   script:
     - npm install
     #- npm run build
     #- node build.js
   artifacts:
+    untracked: true
     paths:
       - public
     expire_in: 10 minutes
@@ -21,6 +23,7 @@ pages:
   script:
     - ls public
   artifacts:
+    untracked: true
     paths:
       - public
   only: