From 6ec5b730431db4c5e23836d6f4c382003b9545cf Mon Sep 17 00:00:00 2001 From: reibitto Date: Sun, 17 May 2020 11:07:44 +0900 Subject: [PATCH] Fix CI (#14) --- .circleci/config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 834a239a..b183c774 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -71,6 +71,8 @@ install_yarn: &install_yarn - run: name: Install Yarn command: | + sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 78BD65473CB3BD13 + sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 5DC22404A6F9F1CA curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - sudo bash -c 'echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list' sudo apt update && sudo apt install yarn -y