From b0994a1409abfd0beffeff1ecd84afd019744042 Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Fri, 10 Dec 2021 22:08:30 +0100 Subject: [PATCH] Fix docker hub credentials configuration Closes gh-198 --- ci/pipeline.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ci/pipeline.yml b/ci/pipeline.yml index 16a3ea45..95169022 100644 --- a/ci/pipeline.yml +++ b/ci/pipeline.yml @@ -1,7 +1,7 @@ anchors: docker-hub-task-params: &docker-hub-task-params - username: ((docker-hub-username)) - password: ((docker-hub-password)) + DOCKER_HUB_USERNAME: ((docker-hub-username)) + DOCKER_HUB_PASSWORD: ((docker-hub-password)) gradle-enterprise-task-params: &gradle-enterprise-task-params GRADLE_ENTERPRISE_ACCESS_KEY: ((gradle_enterprise_secret_access_key)) GRADLE_ENTERPRISE_CACHE_USERNAME: ((gradle_enterprise_cache_user.username)) @@ -42,7 +42,8 @@ resources: type: registry-image icon: docker source: - <<: *docker-hub-task-params + username: ((docker-hub-username)) + password: ((docker-hub-password)) tag: ((milestone)) repository: ((docker-hub-organization))/spring-graphql-ci-image - name: artifactory-repo