태그 생성 자동화 (파이프라인 사용 시)
pipeline { agent any stages { stage('Build') { steps { sh 'echo Building...' } } } post { success { sh ''' svn copy svn://10.10.10.10/xxxxxx/trunk \ svn://10.10.10.10/xxxxxx/tags/build-${BUILD_NUMBER} \ -m "Tagging build ${BUILD_NUMBER}" ''' } } }