Created
September 3, 2025 23:53
-
-
Save sarimmehdi/526c979caa141a174d33436246009a36 to your computer and use it in GitHub Desktop.
Jenkins
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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