From fdefc89baec5afc9d97095df47468fe876519a09 Mon Sep 17 00:00:00 2001
From: Martyn Welch <martyn.welch@collabora.com>
Date: Thu, 28 Mar 2019 12:26:05 +0000
Subject: [PATCH] Correct path for uploading installer images.

The installer images are currently being uploaded to
`public/installers/v2019dev0/installer/...`, but should be uploaded to
`public/daily/v2019dev0/installer/...`.

Tweak the Jenkinsfile to upload the images to the correct location.

Signed-off-by: Martyn Welch <martyn.welch@collabora.com>
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index a03a7f32..a04b647d 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -444,7 +444,7 @@ def buildInstallers(installerTargets) {
 
                 // Upload artifacts
                 stage("installers upload") {
-                  uploadDirectory (env.PIPELINE_VERSION, "installers/${release}")
+                  uploadDirectory (env.PIPELINE_VERSION, "daily/${release}")
                 }
               } finally {
                 stage("Cleanup installers") {
-- 
GitLab