Initial commit
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..a6f7fa9
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,14 @@
+# use docker image with latex preinstalled
+# since there is no official latex image, use https://github.com/blang/latex-docker
+# possible alternative: https://github.com/natlownes/docker-latex
+image: blang/latex
+
+build:
+    stage: deploy
+    script:
+        - make apuntsfme.tar.gz
+    artifacts:
+        paths:
+            - apuntsfme.tar.gz
+
+