From 1eb3aa352f3dde431af02a37b35c99d9a9087f52 Mon Sep 17 00:00:00 2001 From: Ketan Reddy Date: Fri, 20 Feb 2026 13:54:42 -0800 Subject: [PATCH] disable tStrictHostKeyChecking for releases --- .circleci/config.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7e90342..53f9fa9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -21,12 +21,22 @@ executors: TZ: "/usr/share/zoneinfo/America/Los_Angeles" commands: + setup_auth: + description: Configure authentication for deployments + steps: + - add_ssh_keys: + fingerprints: + - "SHA256:hUAWVYdfSW5ml6ufbfyEHUcuPwUJ88xVhsZc21b2lA8" + - run: mkdir -p ~/.ssh/ && echo -e "Host github.com\n\tStrictHostKeyChecking no\n" > ~/.ssh/config + - run: git config --global user.name "Intuit Service" + - run: git config --global user.email "opensource-svc@intuit.com" + auto_shipit: description: Perform Auto shipit steps: - attach_workspace: at: ~/lang - + - setup_auth - run: echo "//registry.npmjs.com/:_authToken=$NPM_TOKEN" >> ~/.npmrc - run: echo -e $GPG_KEY | gpg --import --batch - run: |