From 28e7cce9043aa87f2a33637070f56416bc29d184 Mon Sep 17 00:00:00 2001 From: Sambo Chea Date: Mon, 13 Sep 2021 20:47:45 +0700 Subject: [PATCH] Fixed yarn build for ts common inside the packages --- .drone.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 061fdc5..1711af3 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,12 +4,13 @@ name: ci steps: - name: submodules - image: alpine/git + image: d.ctdn.net/alpine/git commands: - git submodule update --init --recursive - name: build image: d.ctdn.net/node commands: - yarn config set registry https://r.ctdn.net - - yarn + - cd packages/ts-common && yarn + - cd ../../ && yarn - yarn build