diff --git a/.github/Jenkinsfile b/.github/Jenkinsfile index 8d040c5..5afe8b2 100644 --- a/.github/Jenkinsfile +++ b/.github/Jenkinsfile @@ -16,9 +16,14 @@ pipeline { ./node_modules/.bin/node-pre-gyp rebuild --production ./node_modules/.bin/node-pre-gyp package ''' + archiveArtifacts artifacts: 'build/stage/*.tar.gz' } } stage('update-gh-release') { + when { + // Disable for now due to IBM GH org PAT policy + expression { false } + } environment { GH_TOKEN = credentials('node-odbc-gh-token') }