From d56158daf9bfe454000ed51dbf2c8197607536a6 Mon Sep 17 00:00:00 2001 From: AlejandroHerr Date: Mon, 18 Nov 2019 00:07:12 +0100 Subject: [PATCH] ci(circleci): fix release command --- .circleci/config.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1be89fe..d07eecf 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,6 +10,9 @@ aliases: - &step_attach_workspace attach_workspace: at: *working_directory + - &add_ssh_keys + name: Add github ssh keys + command: mkdir ~/.ssh && ssh-keyscan github.com >> ~/.ssh/known_hosts jobs: checkout: @@ -37,6 +40,7 @@ jobs: <<: *defaults steps: - *step_attach_workspace + - run: *add_ssh_keys - run: name: release command: 'yarn semantic-release || true'