diff --git a/Jenkinsfile b/Jenkinsfile index 9ac94f0..564a976 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -77,9 +77,11 @@ pipeline { """ } withCredentials([string(credentialsId: 'gh_token', variable: 'GH_TOKEN')]) { - sh """ - gh release create ${env.BASE_VERSION} target/superstream-clients-${env.BASE_VERSION}.jar --generate-notes - """ + dir('superstream-clients'){ + sh """ + gh release create ${env.BASE_VERSION} target/superstream-clients-${env.BASE_VERSION}.jar --generate-notes + """ + } } } }