fixed env var

This commit is contained in:
RyanTLG
2022-03-25 18:34:31 +02:00
parent 0573f09636
commit 2f6fc06b48
2 changed files with 4 additions and 3 deletions

3
.gitignore vendored
View File

@@ -31,4 +31,5 @@ bin/
# fabric
run/
build.gradle
.env

View File

@@ -73,8 +73,8 @@ publishing {
name = "GitHubPackages"
url = "https://maven.pkg.github.com/RyanTLG/gamermod"
credentials {
username = "RyanTLG"
password = "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"
username = System.getenv("UNAME")
password = System.getenv("CODE")
}
}
}