From 877d5ca3c50c4490e70bfb7438ca1b4af9a3bb33 Mon Sep 17 00:00:00 2001 From: Tommy Ludwig <8924140+shakuzen@users.noreply.github.com> Date: Fri, 6 Dec 2024 12:40:24 +0900 Subject: [PATCH 1/2] Use shared context for deploy secrets --- .circleci/config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 960635b429..271e17ea28 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -85,6 +85,8 @@ jobs: command: dockerTest deploy: + context: + - deploy executor: circle-jdk-executor steps: - checkout From 23cd63b6e9fa9bfb44d92e52087c2a170332e44e Mon Sep 17 00:00:00 2001 From: Tommy Ludwig <8924140+shakuzen@users.noreply.github.com> Date: Fri, 6 Dec 2024 12:47:02 +0900 Subject: [PATCH 2/2] Configure context at right place --- .circleci/config.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 271e17ea28..f9896f7787 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -85,8 +85,6 @@ jobs: command: dockerTest deploy: - context: - - deploy executor: circle-jdk-executor steps: - checkout @@ -105,6 +103,8 @@ workflows: - build-jdk17 - docker-tests - deploy: + context: + - deploy requires: - build - build-jdk11 @@ -142,6 +142,8 @@ workflows: tags: only: /^v\d+\.\d+\.\d+(-(RC|M)\d+)?$/ - deploy: + context: + - deploy requires: - build - build-jdk11