Skip to content

Commit 79b3541

Browse files
committedApr 27, 2021
Merge 29735e6 into 1.0.7
2 parents 6e3e261 + 29735e6 commit 79b3541

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,11 +257,11 @@ subprojects {
257257
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
258258
maven { url 'https://repo.spring.io/milestone' }
259259
if (version.endsWith('-SNAPSHOT') || version.contains('-SNAPSHOT-')) { //classic or customized snapshots
260-
if (System.getenv()["bamboo_buildNumber"] == null) {
260+
if (System.getenv()["GITHUB_ACTION"] == null) {
261261
mavenLocal()
262262
}
263263
else {
264-
println 'Bamboo CI detected, avoiding use of mavenLocal()'
264+
println 'GitHub Action detected, avoiding use of mavenLocal()'
265265
}
266266
maven { url 'https://repo.spring.io/snapshot' }
267267
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }

0 commit comments

Comments
 (0)
Please sign in to comment.