check sentry env token as fallback

This commit is contained in:
Julian Krings
2025-06-06 18:36:41 +02:00
parent 67328d7d10
commit c767b6c8e8

View File

@@ -211,7 +211,9 @@ allprojects {
org = "volmit-software"
projectName = "iris"
authToken = property("sentry.auth.token")
authToken = hasProperty("sentry.auth.token") ?
property("sentry.auth.token") :
System.getenv("SENTRY_AUTH_TOKEN")
}
}