Skip to content

Commit

Permalink
Implemented redis compliance flow
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardolopezb committed Jul 8, 2023
1 parent f7f63b6 commit 672163f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ repositories {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/austral-ingsis/class-redis-streams")
credentials {
username = System.getenv("USERNAME") ?: project.findProperty("gpr.user")
password = System.getenv("TOKEN") ?: project.findProperty("gpr.key")
username = System.getenv("USERNAME")
password = System.getenv("TOKEN")
}
}
maven {
Expand All @@ -35,8 +35,8 @@ repositories {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/ingsis-group-6/snippet-events")
credentials {
username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
username = System.getenv("USERNAME")
password = System.getenv("TOKEN")
}
}
}
Expand Down

0 comments on commit 672163f

Please sign in to comment.