From 96f5c2b5a0445bc175ac9493f590d6161f00c104 Mon Sep 17 00:00:00 2001 From: Ishan Jain Date: Wed, 8 Sep 2021 22:59:37 +0530 Subject: [PATCH] move from npm to yarn in automation deployment config --- .../workflows/assembly-production-deployment-automation.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/assembly-production-deployment-automation.yml b/.github/workflows/assembly-production-deployment-automation.yml index 22ef5b6..38b29bd 100644 --- a/.github/workflows/assembly-production-deployment-automation.yml +++ b/.github/workflows/assembly-production-deployment-automation.yml @@ -21,7 +21,7 @@ jobs: cd ${{ secrets.REMOTE_TARGET }} && \ git reset --hard && git clean -df && \ git pull && \ - npm i && \ - npm run build --if-present && \ - npm run generate --if-present && \ + yarn install && \ + yarn build --if-present && \ + yarn generate --if-present && \ pm2 restart assembly --update-env