Skip to content

Instantly share code, notes, and snippets.

@sarimmehdi
Created September 3, 2025 23:53
Show Gist options
  • Save sarimmehdi/526c979caa141a174d33436246009a36 to your computer and use it in GitHub Desktop.
Save sarimmehdi/526c979caa141a174d33436246009a36 to your computer and use it in GitHub Desktop.
Jenkins
pipeline {
agent any
stages {
stage('Generate Translations') {
steps {
sh './gradlew generateProjectTranslations'
}
}
stage('Commit Results') {
steps {
sh 'git add .'
sh 'git commit -m "Auto-generated translations" || true'
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment