diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8d1c8b69c3fce7bea45c73efd06983e3c419a92f..abba407fcb2413b13c53b861a8b631d84f73257b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1 +1,24 @@
- 
+variables:
+  BUILD_TYPE: "devel"
+
+stages:
+  - build
+  - publish
+
+build-zynthbox-image-armhf:
+  image: ubuntu:22.04@sha256:cb6ce0db39adc371523a22a0031aa978ad3efbb13a279b7608010c82f8ab214e
+  stage: build
+  artifacts:
+    paths:
+      - ./build/*.img.xz
+    expire_in: 1 day
+  script:
+    - echo ""
+
+publish-zynthbox-image-armhf:
+  image: ubuntu:focal
+  stage: publish
+  needs: ["build-zynthbox-image-armhf"]
+  dependencies: ["build-zynthbox-image-armhf"]
+  script:
+    - echo ""