From 12a025f79ae1be674b7e7542d0eb000f4c903f2b Mon Sep 17 00:00:00 2001 From: Andy Shiers Date: Thu, 11 Jul 2024 10:41:04 +0000 Subject: [PATCH] Alter stash name for notaraized macOS build to avoid name clash with non-notarized build --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 870c5499..c7d9cc35 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -92,7 +92,7 @@ pipeline { withCredentials([usernamePassword(credentialsId: '868dda6c-aaec-4ee4-845a-57362dec695b', passwordVariable: 'APPLE_APP_PASS', usernameVariable: 'APPLE_ID')]) { sh "CI/packagescripts/osx/notarise.sh" } - stash name: 'mac-ship', includes: 'ship/*' + stash name: 'mac-ship-notarised', includes: 'ship/*' } when { not { @@ -115,7 +115,7 @@ pipeline { unstash 'ride-linux' unstash 'ride-version' unstash 'linux-ship' - unstash 'mac-ship' + unstash 'mac-ship-notarised' unstash 'win-ship' sh './CI/copyinstallers.sh' sh 'rm -Rf _ ship'