#!groovy pipeline { agent { label 'linux' } stages { stage('NPM Install') { when { beforeAgent true; branch 'main' } steps { sh 'npm clean-install' } } stage('Compile Adblock List') { when { beforeAgent true; branch 'main' } steps { sh ''' git checkout main mkdir -p dist npm run compile git stash ''' } } stage('git push') { when { beforeAgent true; branch 'main' } steps { withCredentials([ gitUsernamePassword(credentialsId: 'gitea-jenkins-user-token') ]) { sh ''' git rebase --abort || true git pull --rebase git stash pop || true git add . git commit -m "Update Compiled Adblock List" git push ''' } } } } }