From f5ccb2368ca106a01e751c23487ca4e69c7c13cb Mon Sep 17 00:00:00 2001 From: William Bell <62452284+Ugric@users.noreply.github.com> Date: Sun, 30 Nov 2025 05:58:07 +0000 Subject: [PATCH] change tarball name --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5183478..a1a316d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -57,10 +57,10 @@ pipeline { cp LICENSE.txt build/bin/ # Create tarball with the contents of build/bin at the root - tar -czf chloride.tar.gz -C build/bin . + tar -czf chloride-linux-x86_64.tar.gz -C build/bin . ''' // Archive the tarball - archiveArtifacts artifacts: 'chloride.tar.gz', allowEmptyArchive: false + archiveArtifacts artifacts: 'chloride-linux-x86_64.tar.gz', allowEmptyArchive: false } } }