diff --git a/.gitlab-ci-psnc.yml b/.gitlab-ci-psnc.yml
index 5e309a7fb0479709e13b9f8ef0e3c3563543951d..efc1f65d2cc0084298dba859a23316873f0c61da 100644
--- a/.gitlab-ci-psnc.yml
+++ b/.gitlab-ci-psnc.yml
@@ -22,7 +22,7 @@ upload_linux_artifact:
   script: ./build.sh --os=linux --arch=amd64 --upx
   artifacts:
     paths:
-      - /home/maxadamo/go/bin/acme-downloader
+      - acme-downloader
   tags:
     - visnu_shell
 # upload_windows_artifact:
@@ -30,7 +30,7 @@ upload_linux_artifact:
 #   script: ./build.sh --os=windows --arch=amd64 --upx
 #   artifacts:
 #     paths:
-#       - /home/maxadamo/go/bin/windows_amd64/acme-downloader.exe
+#       - acme-downloader.exe
 #   tags:
 #     - visnu_shell
 # upload_shell_script:
diff --git a/build.sh b/build.sh
index 2c155e339b9e46c8997771e8b819cefbdd1c7bff..e54381e1259e23b858433560f782501ac8244bc2 100755
--- a/build.sh
+++ b/build.sh
@@ -97,6 +97,7 @@ run_upx() {
 
 if [ -n $UPX ]; then
     run_upx
+    cp $EXECUTABLE_PATH .
 elif [ -n $NOUPX ]; then
     true
 else