We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88f37fb commit d8fea47Copy full SHA for d8fea47
.gitignore
@@ -28,6 +28,7 @@
28
# Gradle
29
.idea/**/gradle.xml
30
.idea/**/libraries
31
+gradle.properties
32
33
# Gradle and Maven with auto-import
34
# When using Gradle or Maven with auto-import, you should exclude module files,
build.gradle
@@ -12,8 +12,8 @@ publishing {
12
name = "repo.mikigal.pl"
13
url = uri("https://repo.mikigal.pl/releases")
14
credentials {
15
- username = System.getenv("REPO_USERNAME")
16
- password = System.getenv("REPO_TOKEN")
+ username = project.findProperty("REPO_USERNAME")
+ password = project.findProperty("REPO_TOKEN")
17
}
18
19
0 commit comments