From ac6b2c646e4151f3976c55d0b0846e323074f5c8 Mon Sep 17 00:00:00 2001 From: Vadim Troshchinskiy Shmelev Date: Mon, 24 Feb 2025 14:26:08 +0100 Subject: [PATCH] fix versioning some more --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 44cdf84..02ac7fb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -66,7 +66,7 @@ pipeline { withCredentials([string(credentialsId: 'aptly-gpg-passphrase', variable: 'GPG_PASSPHRASE')]) { sh ''' aptly=72.17.8.68 - scp OGBrowser-2.0.${BUILD_NUMBER}-Linux.deb aptly@${aptly}:/tmp + scp build/OGBrowser-2.0.${BUILD_NUMBER}-Linux.deb aptly@${aptly}:/tmp ssh aptly@${aptly} -o StrictHostKeyChecking=no "aptly repo add ogbrowser /tmp/OGBrowser-2.0.${BUILD_NUMBER}-Linux.deb" ssh aptly@${aptly} -o StrictHostKeyChecking=no "aptly publish repo --passphrase=\"${GPG_PASSPHRASE}\" -- ogbrowser" '''