Skip to content

Commit 9f0b610

Browse files
authored
fix: Update System.env syntax for Gradle 9 compatibility (#252)
Signed-off-by: Daniel Widdis <[email protected]>
1 parent 2753af9 commit 9f0b610

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

WORKFLOWS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ In order to onboard, follow the below steps:
9999
name = "Snapshots"
100100
url = "https://aws.oss.sonatype.org/content/repositories/snapshots"
101101
credentials {
102-
username "$System.env.SONATYPE_USERNAME"
103-
password "$System.env.SONATYPE_PASSWORD"
102+
username System.getenv("SONATYPE_USERNAME")
103+
password System.getenv("SONATYPE_PASSWORD")
104104
}
105105
}
106106
}

0 commit comments

Comments
 (0)