Skip to content

Commit

Permalink
Add output to test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jrsmth-tier2 committed Mar 28, 2024
1 parent db8ebbf commit 185930d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/step-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
env:
GPR_USER: ${{ secrets.GPR_USER }}
GPR_KEY: ${{ secrets.GPR_KEY }}
run: ./gradlew test --stacktrace
run: ./gradlew test -i
4 changes: 0 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ plugins {
id 'maven-publish'
}

println 'USER: ' + System.getenv("GPR_USER")
println 'KEY: ' + System.getenv("GPR_KEY").length()

allprojects {
repositories {
mavenCentral()
Expand All @@ -19,7 +16,6 @@ allprojects {
username = project.findProperty("gpr.user") ?: System.getenv("GPR_USER")
password = project.findProperty("gpr.key") ?: System.getenv("GPR_KEY")
}
// Note :: the commons repo has been made public due to failing workflow (401 err)
}
}
}
Expand Down

0 comments on commit 185930d

Please sign in to comment.