Skip to content

Commit f56c6c4

Browse files
committed
chore: remove ORG_ from ORG_REGISTRY_USER and ORG_REGISTRY_PASSWORD
1 parent 208ced7 commit f56c6c4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

JShellAPI/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jib {
3030
to {
3131
image = 'togetherjava.org:5001/togetherjava/jshellbackend:master' ?: 'latest'
3232
auth {
33-
username = System.getenv('ORG_REGISTRY_USER') ?: ''
34-
password = System.getenv('ORG_REGISTRY_PASSWORD') ?: ''
33+
username = System.getenv('REGISTRY_USER') ?: ''
34+
password = System.getenv('REGISTRY_PASSWORD') ?: ''
3535
}
3636
}
3737
container {

JShellWrapper/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jib {
2626
to {
2727
image = rootProject.ext.jShellWrapperImageName
2828
auth {
29-
username = System.getenv('ORG_REGISTRY_USER') ?: ''
30-
password = System.getenv('ORG_REGISTRY_PASSWORD') ?: ''
29+
username = System.getenv('REGISTRY_USER') ?: ''
30+
password = System.getenv('REGISTRY_PASSWORD') ?: ''
3131
}
3232
}
3333
container {

0 commit comments

Comments
 (0)