Do not run the update task in CI context

This commit is contained in:
Tobi Schäfer 2024-05-18 23:28:23 +02:00
parent d7f9882596
commit f0ac6cdb5f

View file

@ -147,7 +147,10 @@ distZip {
installDist {
dependsOn build
finalizedBy 'update'
if (!System.getenv('CI')) {
finalizedBy 'update'
}
}
run {