Prechádzať zdrojové kódy

Forgot to deploy the main jar

Signed-off-by: shedaniel <daniel@shedaniel.me>
shedaniel 4 rokov pred
rodič
commit
f0d4bd7d02
1 zmenil súbory, kde vykonal 4 pridanie a 4 odobranie
  1. 4 4
      build.gradle

+ 4 - 4
build.gradle

@@ -324,12 +324,12 @@ publishing {
     }
 
     repositories {
-        if (project.hasProperty('danielshe_pass')) {
+        if (System.getenv("MAVEN_PASS") != null) {
             maven {
-                url = "http://deploy.modmuss50.me/"
+                url = "https://deploy.shedaniel.me/"
                 credentials {
-                    username = "danielshe"
-                    password = project.getProperty('danielshe_pass')
+                    username = "shedaniel"
+                    password = System.getenv("MAVEN_PASS")
                 }
             }
         }