Skip to content

Commit

Permalink
use legacy token
Browse files Browse the repository at this point in the history
  • Loading branch information
hpratt committed May 20, 2023
1 parent 84ef10f commit 6c6b86e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {
}

group = "com.genomealmanac"
version = "2.2.2"
version = "2.2.3"

repositories {
mavenLocal()
Expand Down Expand Up @@ -61,8 +61,8 @@ publishing {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/weng-lab/motif-workflow")
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
username = project.findProperty("gpr.user") as String? ?: System.getenv("USERNAME") ?: ""
password = project.findProperty("gpr.user") as String? ?: System.getenv("TOKEN") ?: ""
}
}
}
Expand Down

0 comments on commit 6c6b86e

Please sign in to comment.