fix: environment variable not found in gradle build script

This commit is contained in:
oSumAtrIX 2022-06-14 01:31:37 +02:00
parent cf1b568f75
commit 0da15fb0ef
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

View File

@ -4,22 +4,19 @@ plugins {
group = "app.revanced" group = "app.revanced"
val githubUsername: String = project.findProperty("gpr.user") as? String ?: System.getenv("GITHUB_ACTOR")
val githubPassword: String = project.findProperty("gpr.key") as? String ?: System.getenv("GITHUB_TOKEN")
repositories { repositories {
mavenCentral() mavenCentral()
maven { maven {
url = uri("https://maven.pkg.github.com/revanced/revanced-patcher") url = uri("https://maven.pkg.github.com/revanced/revanced-patcher")
credentials { credentials {
username = githubUsername username = project.findProperty("gpr.user") as? String ?: System.getenv("GITHUB_ACTOR")
password = githubPassword password = project.findProperty("gpr.key") as? String ?: System.getenv("GITHUB_TOKEN")
} }
} }
} }
dependencies { dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.7.0") implementation(kotlin("stdlib"))
implementation("app.revanced:revanced-patcher:1.1.0") implementation("app.revanced:revanced-patcher:1.1.0")
} }