diff --git a/Jenkinsfile.releasability b/Jenkinsfile.releasability index 972214bfaa..8f7fd44681 100644 --- a/Jenkinsfile.releasability +++ b/Jenkinsfile.releasability @@ -143,8 +143,11 @@ def doBuild() { withEnv(['REALM_XCODE_VERSION=15.0']) { sh './build.sh package-release' } - stash includes: 'pkg/realm-swift-*.zip', name: 'packaged' - archiveArtifacts artifacts: 'pkg/*.zip' + + dir("pkg") { + stash includes: 'realm-swift-*.zip', name: 'packaged' + archiveArtifacts artifacts: '*.zip' + } } }