diff --git a/tests/end-to-end/build.gradle.kts b/tests/end-to-end/build.gradle.kts index ba81334bb..43721dffc 100644 --- a/tests/end-to-end/build.gradle.kts +++ b/tests/end-to-end/build.gradle.kts @@ -14,15 +14,15 @@ repositories { maven { url = uri("https://maven.pkg.github.com/input-output-hk/atala-automation/") credentials { - username = System.getenv("ATALA_GITHUB_ACTOR") - password = System.getenv("ATALA_GITHUB_TOKEN") + username = System.getenv("GITHUB_ACTOR") + password = System.getenv("GITHUB_TOKEN") } } maven { url = uri("https://maven.pkg.github.com/hyperledger/identus-cloud-agent/") credentials { - username = System.getenv("ATALA_GITHUB_ACTOR") - password = System.getenv("ATALA_GITHUB_TOKEN") + username = System.getenv("GITHUB_ACTOR") + password = System.getenv("GITHUB_TOKEN") } } }