This is an automated email from the ASF dual-hosted git repository.
sk0x50 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new f3464de3de IGNITE-18152 Fixed creds reading in publishing task. Fixes
#1353
f3464de3de is described below
commit f3464de3dec3b2e9d1cd0db9e21e80e5f91284fe
Author: Mikhail <[email protected]>
AuthorDate: Wed Nov 23 11:44:54 2022 +0200
IGNITE-18152 Fixed creds reading in publishing task. Fixes #1353
Signed-off-by: Slava Koptilin <[email protected]>
---
buildscripts/publishing-repos.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/buildscripts/publishing-repos.gradle
b/buildscripts/publishing-repos.gradle
index 211d5812a6..95c5e68301 100644
--- a/buildscripts/publishing-repos.gradle
+++ b/buildscripts/publishing-repos.gradle
@@ -22,7 +22,7 @@ publishing {
maven {
credentials {
username = project.properties["staging_user"]
- password = project.properties["staging_pass"]
+ password = project.properties["staging_password"]
}
url repos['apache-staging']
}