diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8bc7a904f4f0649c0dcda9966187fe2dfbf9186b..e734f823649c9498bdefef9b4db723826460bd82 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -106,3 +106,17 @@ osx_amd64_dmg:
      expire_in: 1 day
      paths:
        - Pd*.dmg
+
+osx_10.8_amd64_dmg:
+   tags:
+     - osx
+     - v10.8
+     - dmg
+   script:
+     - echo `pwd`
+     - cd l2ork_addons
+     - osx_version=10.8 ./tar_em_up.sh -X
+   artifacts:
+     expire_in: 1 day
+     paths:
+       - Pd*.dmg
diff --git a/l2ork_addons/tar_em_up.sh b/l2ork_addons/tar_em_up.sh
index 730c68a950c3bf45bb127322cfa3d541955c018c..2d88f56a8503838152fe440a2e57408e068511d7 100755
--- a/l2ork_addons/tar_em_up.sh
+++ b/l2ork_addons/tar_em_up.sh
@@ -122,7 +122,7 @@ if [ ! -d "../pd/nw/nw" ]; then
 		ext="tar.gz"
 	fi
 
-	if [[ $os == "win" ]]; then
+	if [[ $os == "win" || $osx_version == "10.8" ]]; then
 		# We need the lts version to be able to run on XP. For
                 # simplicity we use that same version for 64 bit Windows, too
 		nwjs_version="v0.14.7"